nixpkgs/pkgs/development/libraries/gtk-libs-2.8/glib/default.nix

13 lines
332 B
Nix
Raw Normal View History

{stdenv, fetchurl, pkgconfig, gettext, perl}:
assert pkgconfig != null && gettext != null && perl != null;
stdenv.mkDerivation {
name = "glib-2.8.5";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/glib-2.8.5.tar.bz2;
md5 = "334bb6892fb05aa34eae53707cc2726e";
};
buildInputs = [pkgconfig gettext perl];
}