{ mkDerivation, base, hpack, parsec, stdenv }: mkDerivation { pname = "lispscript"; version = "0.1.0.0"; src = ./.; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base parsec ]; libraryToolDepends = [ hpack ]; executableHaskellDepends = [ base parsec ]; testHaskellDepends = [ base parsec ]; prePatch = "hpack"; homepage = "https://github.com/githubuser/lispscript#readme"; license = stdenv.lib.licenses.bsd3; }