about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-01-16 12:42:13 +0100
committerPeter Simons <simons@cryp.to>2013-01-16 12:42:31 +0100
commit1026de58a1f97b789d5e518fe7aef3daea7c49f5 (patch)
tree874645f516e9d1130b188bca37950b31e814bae7 /pkgs/development/libraries/haskell
parentf5a15bfffc4a959a6d69cb4927902d31cfebafc9 (diff)
downloadnixlib-1026de58a1f97b789d5e518fe7aef3daea7c49f5.tar
nixlib-1026de58a1f97b789d5e518fe7aef3daea7c49f5.tar.gz
nixlib-1026de58a1f97b789d5e518fe7aef3daea7c49f5.tar.bz2
nixlib-1026de58a1f97b789d5e518fe7aef3daea7c49f5.tar.lz
nixlib-1026de58a1f97b789d5e518fe7aef3daea7c49f5.tar.xz
nixlib-1026de58a1f97b789d5e518fe7aef3daea7c49f5.tar.zst
nixlib-1026de58a1f97b789d5e518fe7aef3daea7c49f5.zip
haskell-cryptocipher: update to version 0.4.0
Diffstat (limited to 'pkgs/development/libraries/haskell')
-rw-r--r--pkgs/development/libraries/haskell/cryptocipher/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/libraries/haskell/cryptocipher/default.nix b/pkgs/development/libraries/haskell/cryptocipher/default.nix
index 89b098173ec1..275622d3cad8 100644
--- a/pkgs/development/libraries/haskell/cryptocipher/default.nix
+++ b/pkgs/development/libraries/haskell/cryptocipher/default.nix
@@ -1,19 +1,20 @@
-{ cabal, cereal, cpu, cryptoApi, cryptoPubkeyTypes, primitive
-, tagged, vector
+{ cabal, cereal, cipherAes, cipherRc4, cpu, cryptoApi
+, cryptoPubkeyTypes, primitive, tagged, vector
 }:
 
 cabal.mkDerivation (self: {
   pname = "cryptocipher";
-  version = "0.3.7";
-  sha256 = "14qhi3969q1h9n85flb7wwsr50gdn63q7pmcpm2npy5vkp34lkp5";
+  version = "0.4.0";
+  sha256 = "1qbnhzbzypin7h62sn2sibij7clsgmaiq24q3xhgbjrirb6bhqf0";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
-    cereal cpu cryptoApi cryptoPubkeyTypes primitive tagged vector
+    cereal cipherAes cipherRc4 cpu cryptoApi cryptoPubkeyTypes
+    primitive tagged vector
   ];
   meta = {
     homepage = "http://github.com/vincenthz/hs-cryptocipher";
-    description = "Symmetrical Block, Stream and PubKey Ciphers";
+    description = "Symmetrical block and stream ciphers";
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;
     maintainers = [ self.stdenv.lib.maintainers.andres ];