3
0
Fork 0
forked from mirrors/nixpkgs

Merge branch 'haskell-scrypt' of git://github.com/hrdinka/nixpkgs

haskell-scrypt: add version 0.5.0
This commit is contained in:
Shea Levy 2014-03-14 20:10:25 -04:00
commit f2930e661a
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ cabal, base64Bytestring, entropy, HUnit, QuickCheck
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "scrypt";
version = "0.5.0";
sha256 = "1cnrjdq1ncv224dlk236a7w29na8r019d2acrsxlsaiy74iadh1y";
buildDepends = [ base64Bytestring entropy ];
testDepends = [
HUnit QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2
];
meta = {
homepage = "http://github.com/informatikr/scrypt";
description = "Stronger password hashing via sequential memory-hard functions";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2151,6 +2151,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
scottyHastache = callPackage ../development/libraries/haskell/scotty-hastache {};
scrypt = callPackage ../development/libraries/haskell/scrypt {};
securemem = callPackage ../development/libraries/haskell/securemem {};
sendfile = callPackage ../development/libraries/haskell/sendfile {};