diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..1890d35 --- /dev/null +++ b/default.nix | |||
@@ -0,0 +1,10 @@ | |||
1 | { mkDerivation, base, parsec, readline, stdenv }: | ||
2 | mkDerivation { | ||
3 | pname = "lisk"; | ||
4 | version = "0.1.0.0"; | ||
5 | src = ./.; | ||
6 | isLibrary = false; | ||
7 | isExecutable = true; | ||
8 | executableHaskellDepends = [ base parsec readline ]; | ||
9 | license = stdenv.lib.licenses.gpl3; | ||
10 | } | ||