17 lines
420 B
Nix
17 lines
420 B
Nix
|
|
{ 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";
|
||
|
|
}
|