aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/default.nix b/default.nix
index a4ac4ea..64861a5 100644
--- a/default.nix
+++ b/default.nix
@@ -1,11 +1,11 @@
1{ mkDerivation, base, stdenv }: 1{ mkDerivation, base, containers, parsec, stdenv }:
2mkDerivation { 2mkDerivation {
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 = false;
7 isExecutable = true; 7 isExecutable = true;
8 executableHaskellDepends = [ base ]; 8 executableHaskellDepends = [ base containers parsec ];
9 license = "MIT"; 9 license = "unknown";
10 hydraPlatforms = stdenv.lib.platforms.none; 10 hydraPlatforms = stdenv.lib.platforms.none;
11} 11}