aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-12-05 03:15:40 +0000
committerAkshay <[email protected]>2020-12-05 03:15:40 +0000
commit33549e923debfa5c586e2b27938ff9574c9de5bf (patch)
tree020cda28648f7b105f54dc0f544eb0d966c2a130 /default.nix
parentc5e1079518eaa7bde5bea0713533bbab26466ecc (diff)
normalize outputs to print part 1 and 2
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}