mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 22:53:42 +00:00
b5c67150cf
- blaze-html: updated to version 0.4.3.4 - gloss: updated to version 1.7.3.1 - hashtables: updated to version 1.0.1.4 - repa: updated to version 3.1.2.1 - skein: updated to version 0.1.0.6 svn path=/nixpkgs/trunk/; revision=33859
15 lines
483 B
Nix
15 lines
483 B
Nix
{ cabal, cereal, cryptoApi, tagged }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "skein";
|
|
version = "0.1.0.6";
|
|
sha256 = "041qg0vy5h5xd0142chbmkhmqxbglrb7x0ybcalrxr7dawxksm8d";
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
|
meta = {
|
|
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 ];
|
|
};
|
|
})
|