diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/default.nix b/default.nix index 90576e7..e4f6be6 100644 --- a/default.nix +++ b/default.nix | |||
@@ -1,7 +1,4 @@ | |||
1 | { mkDerivation, base, mtl, parsec, QuickCheck, readline, stdenv | 1 | { mkDerivation, base, mtl, parsec, QuickCheck, readline, stdenv }: |
2 | , test-framework, test-framework-hunit, test-framework-quickcheck2 | ||
3 | , test-framework-th | ||
4 | }: | ||
5 | mkDerivation { | 2 | mkDerivation { |
6 | pname = "lisk"; | 3 | pname = "lisk"; |
7 | version = "0.1.0.0"; | 4 | version = "0.1.0.0"; |
@@ -10,10 +7,7 @@ mkDerivation { | |||
10 | isExecutable = true; | 7 | isExecutable = true; |
11 | libraryHaskellDepends = [ base mtl parsec ]; | 8 | libraryHaskellDepends = [ base mtl parsec ]; |
12 | executableHaskellDepends = [ base mtl parsec readline ]; | 9 | executableHaskellDepends = [ base mtl parsec readline ]; |
13 | testHaskellDepends = [ | 10 | testHaskellDepends = [ base parsec QuickCheck ]; |
14 | base parsec QuickCheck test-framework test-framework-hunit | ||
15 | test-framework-quickcheck2 test-framework-th | ||
16 | ]; | ||
17 | description = "a lisp interpreter"; | 11 | description = "a lisp interpreter"; |
18 | license = stdenv.lib.licenses.gpl3; | 12 | license = stdenv.lib.licenses.gpl3; |
19 | } | 13 | } |