3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
20 lines
642 B
Nix
20 lines
642 B
Nix
{ cabal, cairo, glib, gtk2hsBuildtools, libc, mtl, pango, pkgconfig
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "pango";
|
|
version = "0.12.4";
|
|
sha256 = "08c7kmbnga6lijv7hpxgs766lsvaqpbqbph1gsxncqsl8haq4v5c";
|
|
buildDepends = [ cairo glib mtl ];
|
|
buildTools = [ gtk2hsBuildtools ];
|
|
extraLibraries = [ libc pkgconfig ];
|
|
pkgconfigDepends = [ cairo pango ];
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/gtk2hs/";
|
|
description = "Binding to the Pango text rendering engine";
|
|
license = self.stdenv.lib.licenses.lgpl21;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|