aboutsummaryrefslogtreecommitdiffstats
path: root/nix/hedgehog-fn.nix
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2019-07-20 19:44:11 +0100
committerYann Herklotz <git@yannherklotz.com>2019-07-20 19:44:11 +0100
commit003203b33ebac04ee6fc933d444584bb1e81f250 (patch)
tree60b2df5b8f74422c6cc38d8fb789016513b3c3f8 /nix/hedgehog-fn.nix
parent7d69341adfef072e46098a5b377a22ab4ce610dd (diff)
downloadverismith-003203b33ebac04ee6fc933d444584bb1e81f250.tar.gz
verismith-003203b33ebac04ee6fc933d444584bb1e81f250.zip
Add nix style build
Diffstat (limited to 'nix/hedgehog-fn.nix')
-rw-r--r--nix/hedgehog-fn.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/nix/hedgehog-fn.nix b/nix/hedgehog-fn.nix
new file mode 100644
index 0000000..0bf9279
--- /dev/null
+++ b/nix/hedgehog-fn.nix
@@ -0,0 +1,17 @@
+{ mkDerivation, base, contravariant, hedgehog, stdenv, transformers
+}:
+mkDerivation {
+ pname = "hedgehog-fn";
+ version = "0.6";
+ sha256 = "fb02b67fba97e24c226feba010d2b308934c54e20a0723b6ea7e4eb199f02176";
+ revision = "1";
+ editedCabalFile = "19v7amg8l6s1gadnya8nxkcbi0vd3wqc7h6gvqvs099qaqm7zbb1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base contravariant hedgehog transformers
+ ];
+ homepage = "https://github.com/qfpl/hedgehog-fn";
+ description = "Function generation for `hedgehog`";
+ license = stdenv.lib.licenses.bsd3;
+}