aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 64861a5..78e9f1f 100644
--- a/default.nix
+++ b/default.nix
@@ -3,8 +3,9 @@ mkDerivation {
3 pname = "aoc"; 3 pname = "aoc";
4 version = "0.1.0.0"; 4 version = "0.1.0.0";
5 src = ./.; 5 src = ./.;
6 isLibrary = false; 6 isLibrary = true;
7 isExecutable = true; 7 isExecutable = true;
8 libraryHaskellDepends = [ base ];
8 executableHaskellDepends = [ base containers parsec ]; 9 executableHaskellDepends = [ base containers parsec ];
9 license = "unknown"; 10 license = "unknown";
10 hydraPlatforms = stdenv.lib.platforms.none; 11 hydraPlatforms = stdenv.lib.platforms.none;