aboutsummaryrefslogtreecommitdiff
path: root/default.nix
blob: a4ac4eaba98a91c05782355efc0707bde1220a23 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ mkDerivation, base, stdenv }:
mkDerivation {
  pname = "aoc";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [ base ];
  license = "MIT";
  hydraPlatforms = stdenv.lib.platforms.none;
}