1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/gnutls/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

17 lines
510 B
Nix

{ cabal, gnutls, monadsTf, transformers }:
cabal.mkDerivation (self: {
pname = "gnutls";
version = "0.1.4";
sha256 = "0xgjp274m4z005z77lhmh7blg6rw9g28jm0sd376rr49hykbxwd1";
buildDepends = [ monadsTf transformers ];
extraLibraries = [ gnutls ];
pkgconfigDepends = [ gnutls ];
meta = {
homepage = "https://john-millikin.com/software/haskell-gnutls/";
description = "Bindings for GNU libgnutls";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
};
})