mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Added Haskell package pbkdf
This commit is contained in:
parent
afc1f7ca15
commit
eed8f2d91e
2 changed files with 17 additions and 0 deletions
15
pkgs/development/libraries/haskell/pbkdf/default.nix
Normal file
15
pkgs/development/libraries/haskell/pbkdf/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ cabal, binary, byteable, bytedump, cryptohash, utf8String }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "pbkdf";
|
||||
version = "1.1.1.1";
|
||||
sha256 = "1nbn8kan43i00g23g8aljxjpaxm9q1qhzxxdgks0mc4mr1f7bifx";
|
||||
buildDepends = [ binary byteable bytedump cryptohash utf8String ];
|
||||
testDepends = [ binary byteable bytedump cryptohash utf8String ];
|
||||
meta = {
|
||||
homepage = "https://github.com/cdornan/pbkdf";
|
||||
description = "Haskell implementation of the PBKDF functions from RFC-2898";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1895,6 +1895,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
pathtype = callPackage ../development/libraries/haskell/pathtype {};
|
||||
|
||||
pbkdf = callPackage ../development/libraries/haskell/pbkdf {};
|
||||
|
||||
pcap = callPackage ../development/libraries/haskell/pcap {};
|
||||
|
||||
pcapEnumerator = callPackage ../development/libraries/haskell/pcap-enumerator {};
|
||||
|
|
Loading…
Reference in a new issue