haskell-crypto-cipher-types: add version 0.0.1
This commit is contained in:
parent
60a58dda25
commit
0700209478
@ -0,0 +1,20 @@
|
|||||||
|
{ cabal, byteable, HUnit, mtl, QuickCheck, securemem, testFramework
|
||||||
|
, testFrameworkHunit, testFrameworkQuickcheck2
|
||||||
|
}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "crypto-cipher-types";
|
||||||
|
version = "0.0.1";
|
||||||
|
sha256 = "0brwb6awni3jm152vi68saz6gla7kgwf2pfjalzqsi8qjpjbzgpj";
|
||||||
|
buildDepends = [ byteable securemem ];
|
||||||
|
testDepends = [
|
||||||
|
byteable HUnit mtl QuickCheck testFramework testFrameworkHunit
|
||||||
|
testFrameworkQuickcheck2
|
||||||
|
];
|
||||||
|
meta = {
|
||||||
|
homepage = "http://github.com/vincenthz/hs-crypto-cipher";
|
||||||
|
description = "Generic cryptography cipher types";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -758,6 +758,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||||||
|
|
||||||
cryptoCipherTests = callPackage ../development/libraries/haskell/crypto-cipher-tests {};
|
cryptoCipherTests = callPackage ../development/libraries/haskell/crypto-cipher-tests {};
|
||||||
|
|
||||||
|
cryptoCipherTypes = callPackage ../development/libraries/haskell/crypto-cipher-types {};
|
||||||
|
|
||||||
cryptoConduit = callPackage ../development/libraries/haskell/crypto-conduit {};
|
cryptoConduit = callPackage ../development/libraries/haskell/crypto-conduit {};
|
||||||
|
|
||||||
cryptohash = callPackage ../development/libraries/haskell/cryptohash {};
|
cryptohash = callPackage ../development/libraries/haskell/cryptohash {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user