aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-10-15 10:35:40 +0100
committerAkshay <[email protected]>2020-10-15 10:35:40 +0100
commit9a5f28025aa5ed89be763dd874590c5ae3cb45b5 (patch)
treeaf9d13ea140cd75b89410d8409cbce1afc7f431b /default.nix
parentc9958740743bd38f600d6b3d2f47af474def714f (diff)
pin nixpkgs to 20.03, fix broken readline dep
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix10
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}:
5mkDerivation { 2mkDerivation {
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}