init
This commit is contained in:
16
autotypes/default.nix
Normal file
16
autotypes/default.nix
Normal file
@@ -0,0 +1,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";
|
||||
}
|
||||
Reference in New Issue
Block a user