nixpkgs/pkgs/development/libraries/haskell/skein/default.nix

18 lines
631 B
Nix
Raw Normal View History

{ cabal, cereal, cryptoApi, filepath, hspec, tagged }:
cabal.mkDerivation (self: {
pname = "skein";
2013-08-29 08:48:45 +00:00
version = "1.0.6";
sha256 = "0jdh618k66bhiwrxb9i2yckxz0w3cpc7q15ilz49lqjjpl86bndk";
buildDepends = [ cereal cryptoApi tagged ];
testDepends = [ cereal cryptoApi filepath hspec tagged ];
jailbreak = true;
meta = {
homepage = "https://github.com/meteficha/skein";
description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})