mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
haskell-gnutls: add version 0.1.4
This commit is contained in:
parent
04ba7936a2
commit
4183068e55
2 changed files with 18 additions and 0 deletions
16
pkgs/development/libraries/haskell/gnutls/default.nix
Normal file
16
pkgs/development/libraries/haskell/gnutls/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ 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;
|
||||
};
|
||||
})
|
|
@ -864,6 +864,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
gnuidn = callPackage ../development/libraries/haskell/gnuidn {};
|
||||
|
||||
gnutls = callPackage ../development/libraries/haskell/gnutls { inherit (pkgs) gnutls; };
|
||||
|
||||
gtk = callPackage ../development/libraries/haskell/gtk {
|
||||
inherit (pkgs) gtk;
|
||||
libc = pkgs.stdenv.gcc.libc;
|
||||
|
|
Loading…
Reference in a new issue