summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorstuebinm2021-12-19 13:22:20 +0100
committerstuebinm2021-12-19 13:25:12 +0100
commitfc9f714d03a9d018ab9f2474affcf995eb60a4e2 (patch)
treef0f978164f61a65b9a65ff8bee872d88cfc7c9ab /default.nix
parentaa897bb7e2ae257c2680521e6b1c1cad1237df53 (diff)
add install instructions, remove nix/guix
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/default.nix b/default.nix
deleted file mode 100644
index 541c913..0000000
--- a/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ mkDerivation, aeson, aeson-pretty, base, bytestring
-, bytestring-encoding, containers, either, extra, filepath
-, getopt-generics, lib, mtl, regex-tdfa, text, transformers, vector
-}:
-mkDerivation {
- pname = "walint";
- version = "0.1.0.0";
- src = ./.;
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring containers either extra filepath
- getopt-generics mtl regex-tdfa text transformers vector
- ];
- executableHaskellDepends = [
- aeson aeson-pretty base bytestring bytestring-encoding
- getopt-generics text
- ];
- license = "unknown";
- hydraPlatforms = lib.platforms.none;
-}