mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
haskell-gnuidn: add version 0.2
This commit is contained in:
parent
b72abe1834
commit
04ba7936a2
17
pkgs/development/libraries/haskell/gnuidn/default.nix
Normal file
17
pkgs/development/libraries/haskell/gnuidn/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ cabal, c2hs, libidn, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "gnuidn";
|
||||
version = "0.2";
|
||||
sha256 = "0xk72p3z1lwlmab0jcf7m48p5pncgz00hb7l96naz1gdkbq7xizd";
|
||||
buildDepends = [ text ];
|
||||
buildTools = [ c2hs ];
|
||||
extraLibraries = [ libidn ];
|
||||
pkgconfigDepends = [ libidn ];
|
||||
meta = {
|
||||
homepage = "http://john-millikin.com/software/bindings/gnuidn/";
|
||||
description = "Bindings for GNU IDN";
|
||||
license = self.stdenv.lib.licenses.gpl3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -862,6 +862,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
};
|
||||
GLUT = self.GLUT_2_3_1_0;
|
||||
|
||||
gnuidn = callPackage ../development/libraries/haskell/gnuidn {};
|
||||
|
||||
gtk = callPackage ../development/libraries/haskell/gtk {
|
||||
inherit (pkgs) gtk;
|
||||
libc = pkgs.stdenv.gcc.libc;
|
||||
|
Loading…
Reference in New Issue
Block a user