blob: 90576e70f3ef37622d5b7bfebb11a1b2dfc000e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ mkDerivation, base, mtl, parsec, QuickCheck, readline, stdenv
, test-framework, test-framework-hunit, test-framework-quickcheck2
, test-framework-th
}:
mkDerivation {
pname = "lisk";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base mtl parsec ];
executableHaskellDepends = [ base mtl parsec readline ];
testHaskellDepends = [
base parsec QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 test-framework-th
];
description = "a lisp interpreter";
license = stdenv.lib.licenses.gpl3;
}
|