fd258d6fe1
Some downgrades were necessary. svn path=/nixpkgs/trunk/; revision=28364
16 lines
546 B
Nix
16 lines
546 B
Nix
{cabal, asn1Data, base64Bytestring, mtl} :
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "certificate";
|
|
version = "0.9.1";
|
|
sha256 = "0hq9a0vz72kk1n3hdza36rji8vc95y667iwcsmsh5habyh6q8228";
|
|
propagatedBuildInputs = [ asn1Data base64Bytestring mtl ];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-certificate";
|
|
description = "Certificates and Key Reader/Writer";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.stdenv.lib.platforms.haskellPlatforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|