aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-12-09 05:33:39 +0000
committerAkshay <[email protected]>2020-12-09 05:33:39 +0000
commit644c38de8b633dc5e03bff5216f68b2bfde4a645 (patch)
treeac2c0056739d38bba7855c3aa988ae190a1b158c /default.nix
parent06b14ed84c0a8ec11462f0a6f7397c3e3a52654d (diff)
add initial solution for day09
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;