1f847aa4c5
http://anonscm.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-crypto;a=filediff;h=20120213034652-b2814-0019a3f92e453e9be86166d6c1f1bc0dad6e4d12.gz;f=patches/class-constraints.diff svn path=/nixpkgs/trunk/; revision=32808
21 lines
595 B
Nix
21 lines
595 B
Nix
{ cabal, HUnit, QuickCheck, random }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Crypto";
|
|
version = "4.2.4";
|
|
sha256 = "05wafv8flrh1893rh208azzig5k5pa022s2fg3f8lrqb23c6v63p";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ HUnit QuickCheck random ];
|
|
patches = [ ./class-constraints.diff ];
|
|
meta = {
|
|
description = "Collects together existing Haskell cryptographic functions into a package";
|
|
license = "unknown";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|