aboutsummaryrefslogtreecommitdiffstats
path: root/nix/parser-combinators.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/parser-combinators.nix
parent7d69341adfef072e46098a5b377a22ab4ce610dd (diff)
downloadverismith-003203b33ebac04ee6fc933d444584bb1e81f250.tar.gz
verismith-003203b33ebac04ee6fc933d444584bb1e81f250.zip
Add nix style build
Diffstat (limited to 'nix/parser-combinators.nix')
-rw-r--r--nix/parser-combinators.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nix/parser-combinators.nix b/nix/parser-combinators.nix
new file mode 100644
index 0000000..d1baab9
--- /dev/null
+++ b/nix/parser-combinators.nix
@@ -0,0 +1,10 @@
+{ mkDerivation, base, stdenv }:
+mkDerivation {
+ pname = "parser-combinators";
+ version = "1.1.0";
+ sha256 = "ac7642972b18a47c575d2bcd0b2f6c34f33ca2ed3adb28034420d09ced823e91";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/mrkkrp/parser-combinators";
+ description = "Lightweight package providing commonly useful parser combinators";
+ license = stdenv.lib.licenses.bsd3;
+}