mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
haskell-scrypt: add version 0.5.0
This commit is contained in:
parent
4d5d6aed29
commit
b89bfdf2c2
20
pkgs/development/libraries/haskell/scrypt/default.nix
Normal file
20
pkgs/development/libraries/haskell/scrypt/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -2149,6 +2149,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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user