nixpkgs/pkgs/development/libraries/haskell/Crypto/default.nix
Peter Simons 4a2b9bbaa8 haskell-Crypto: updated to version 4.2.4
svn path=/nixpkgs/trunk/; revision=29112
2011-09-08 17:25:19 +00:00

20 lines
553 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 ];
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
];
};
})