nixpkgs/pkgs/development/libraries/gtk+/pango/default.nix
Eelco Dolstra 12ae5363ea * Remove trivial builders.
* Make builders unexecutable by removing the hash-bang line and
  execute permission.
* Convert calls to `derivation' to `mkDerivation'.
* Remove `system' and `stdenv' attributes from calls to
  `mkDerivation'.  These transformations were all done automatically,
  so it is quite possible I broke stuff.
* Put the `mkDerivation' function in stdenv/generic.

svn path=/nixpkgs/trunk/; revision=874
2004-03-29 17:23:01 +00:00

19 lines
444 B
Nix

{stdenv, fetchurl, pkgconfig, x11, glib, xft}:
assert pkgconfig != null && x11 != null && glib != null && xft != null;
assert x11.buildClientLibs;
assert xft.x11 == x11;
stdenv.mkDerivation {
name = "pango-1.2.5";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gtk.org/pub/gtk/v2.2/pango-1.2.5.tar.bz2;
md5 = "df00fe3e71cd297010f24f439b6c8ee6";
};
pkgconfig = pkgconfig;
x11 = x11;
glib = glib;
xft = xft;
}