nixpkgs/pkgs/development/libraries/haskell/gnuidn/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

18 lines
498 B
Nix

{ 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;
};
})