mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
16 lines
537 B
Nix
16 lines
537 B
Nix
{ cabal, cereal, cryptoApi, tagged }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "skein";
|
|
version = "0.1.0.10";
|
|
sha256 = "0qyiy2yx4qmazz744hyq51v2as51zd9r623bhhk21yzsgh7rl9kc";
|
|
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 ];
|
|
};
|
|
})
|