nixpkgs/pkgs/development/libraries/haskell/tls-extra/default.nix

26 lines
726 B
Nix
Raw Normal View History

{ cabal, certificate, cryptoApi, cryptocipher, cryptohash, mtl
, network, text, time, tls, vector
}:
cabal.mkDerivation (self: {
pname = "tls-extra";
version = "0.3.1";
sha256 = "1zj8l5nglfaarbbzb1icil6cp6rjqfs33nryxc34akz22zwwmln4";
isLibrary = true;
isExecutable = true;
buildDepends = [
certificate cryptoApi cryptocipher cryptohash mtl network text time
tls vector
];
meta = {
homepage = "http://github.com/vincenthz/hs-tls-extra";
description = "TLS extra default values and helpers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})