summaryrefslogtreecommitdiffstats
path: root/regfish.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2021-08-03 15:44:49 +0200
committertv <tv@krebsco.de>2021-08-03 15:45:03 +0200
commit71a3f4e8efa833cc1a8209ab336ac8c454cc2f9b (patch)
tree799b6b6a7ddbba84673b42342b1428cba9369c39 /regfish.nix
parent288051f52e65857a7946e65c5a454b8b35af981b (diff)
env.nix -> shell.nix
Diffstat (limited to 'regfish.nix')
-rw-r--r--regfish.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/regfish.nix b/regfish.nix
new file mode 100644
index 0000000..d0be0c9
--- /dev/null
+++ b/regfish.nix
@@ -0,0 +1,13 @@
+{ mkDerivation, acid-state, base, bytestring, data-default
+, HandsomeSoup, http-client, hxt, lens, lib, mtl, safecopy, wreq
+}:
+mkDerivation {
+ pname = "regfish";
+ version = "2.0.0";
+ src = ./.;
+ libraryHaskellDepends = [
+ acid-state base bytestring data-default HandsomeSoup http-client
+ hxt lens mtl safecopy wreq
+ ];
+ license = lib.licenses.mit;
+}