From ec0ea18486ed2569808f2e511ecac52f812300b0 Mon Sep 17 00:00:00 2001 From: Alexander Foremny Date: Tue, 28 May 2024 22:04:34 +0200 Subject: init --- autotypes/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 autotypes/default.nix (limited to 'autotypes/default.nix') diff --git a/autotypes/default.nix b/autotypes/default.nix new file mode 100644 index 0000000..93962fe --- /dev/null +++ b/autotypes/default.nix @@ -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"; +} -- cgit v1.2.3