aboutsummaryrefslogtreecommitdiffstats
path: root/autotypes/default.nix
blob: 93962fe4ee2a5d7a8555d6efa38d7dbb6e3a3b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, aeson, aeson-qq, base, bytestring, containers
, filepath, lib, vector
}:
mkDerivation {
  pname = "autotypes";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    aeson aeson-qq base bytestring containers filepath vector
  ];
  executableHaskellDepends = [ aeson base bytestring filepath ];
  license = "unknown";
  mainProgram = "autotypes";
}