This commit is contained in:
Alexander Foremny
2024-05-28 22:04:34 +02:00
commit ec0ea18486
16 changed files with 821 additions and 0 deletions

16
autotypes/default.nix Normal file
View 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";
}