{ stdenv , mkDerivation , base }: mkDerivation { pname = "biz"; version = "0"; src = ./.; isExecutable = true; libraryHaskellDepends = [ base ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base ]; homepage = "https://git.sr.ht/~ben/biz"; description = "biz"; license = stdenv.lib.licenses.bsd3; }