18 lines
631 B
Nix
18 lines
631 B
Nix
{ cabal, cereal, cryptoApi, filepath, hspec, tagged }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "skein";
|
|
version = "1.0.8";
|
|
sha256 = "0qga3r73zzbj4kkwl8c3p7d1myjyv6dv6g0dwc77fqnmikzcnils";
|
|
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 ];
|
|
};
|
|
})
|