mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
9165c8adad
enable strictDeps, checked with diffing
29 lines
790 B
Nix
29 lines
790 B
Nix
{ lib, stdenv, fetchurl, pkg-config, gtk2, libxml2, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libglade";
|
|
version = "2.6.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libglade/${lib.versions.majorMinor version}/libglade-${version}.tar.bz2";
|
|
sha256 = "1v2x2s04jry4gpabws92i0wq2ghd47yr5n9nhgnkd7c38xv1wdk4";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ pkg-config gettext ];
|
|
buildInputs = [ gtk2 ];
|
|
propagatedBuildInputs = [ libxml2 ];
|
|
|
|
postPatch = ''
|
|
# uses pkg-config in some places and uses the correct $PKG_CONFIG in some
|
|
# it's an ancient library so it has very old configure scripts and m4
|
|
substituteInPlace ./configure \
|
|
--replace "pkg-config" "$PKG_CONFIG"
|
|
'';
|
|
|
|
NIX_LDFLAGS = "-lgmodule-2.0";
|
|
}
|