Added Haskell package pbkdf

This commit is contained in:
Jacob Hinkle 2014-03-13 10:49:45 -06:00
parent afc1f7ca15
commit eed8f2d91e
2 changed files with 17 additions and 0 deletions

View 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;
};
})

View File

@ -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 {};