15 lines
536 B
Nix
15 lines
536 B
Nix
{ cabal, cereal, cryptoApi, tagged }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "skein";
|
|
version = "0.1.0.9";
|
|
sha256 = "06hx064cpfcd397rmrmfbm7ph38pnxcsn6wij8fcfsx9wq5yq1k1";
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
|
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 ];
|
|
};
|
|
})
|