mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
haskell-cryptocipher: added version 0.3.0
svn path=/nixpkgs/trunk/; revision=30169
This commit is contained in:
parent
2a0816fb45
commit
d19ed54693
20
pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix
Normal file
20
pkgs/development/libraries/haskell/cryptocipher/0.3.0.nix
Normal file
@ -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;
|
||||
};
|
||||
})
|
@ -494,7 +494,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
cryptoApi = callPackage ../development/libraries/haskell/crypto-api {};
|
||||
|
||||
cryptocipher = callPackage ../development/libraries/haskell/cryptocipher {};
|
||||
cryptocipher_0_2_14 = callPackage ../development/libraries/haskell/cryptocipher/0.2.14.nix {};
|
||||
cryptocipher_0_3_0 = callPackage ../development/libraries/haskell/cryptocipher/0.3.0.nix {};
|
||||
cryptocipher = self.cryptocipher_0_2_14;
|
||||
|
||||
cryptohash = callPackage ../development/libraries/haskell/cryptohash {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user