blob: 78e9f1f79f65b881fbf6c1025584c0b83ef47c63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ mkDerivation, base, containers, parsec, stdenv }:
mkDerivation {
pname = "aoc";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ];
executableHaskellDepends = [ base containers parsec ];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}
|