summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix')
-rw-r--r--pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix b/pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix
new file mode 100644
index 00000000000..a1cbb48b463
--- /dev/null
+++ b/pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix
@@ -0,0 +1,20 @@
+{ cabal, cereal, cryptoApi, cryptoPubkeyTypes, primitive, tagged
+, vector
+}:
+
+cabal.mkDerivation (self: {
+  pname = "cryptocipher";
+  version = "0.3.0";
+  sha256 = "17jbzssdbprspadz5ynyam60l5iw7s809irklfg1ii89x26mlyix";
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [
+    cereal cryptoApi cryptoPubkeyTypes primitive tagged vector
+  ];
+  meta = {
+    homepage = "http://github.com/vincenthz/hs-cryptocipher";
+    description = "Symmetrical Block, Stream and PubKey Ciphers";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})