mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
65d9c62ac8
svn path=/nixpkgs/trunk/; revision=29841
21 lines
623 B
Nix
21 lines
623 B
Nix
{ cabal, asn1Data, base64Bytestring, mtl, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "certificate";
|
|
version = "0.9.4";
|
|
sha256 = "0apv2paxlp12ksn28bn4lb1mg05cs7sjygfarxacwmz43jy6ld9v";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ asn1Data base64Bytestring mtl time ];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-certificate";
|
|
description = "Certificates and Key Reader/Writer";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|