nixpkgs/pkgs/development/libraries/libwnck/3.x.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

24 lines
569 B
Nix

{stdenv, fetchurl, pkgconfig, libX11, gtk3, intltool}:
stdenv.mkDerivation {
name = "libwnck-3.4.7";
src = fetchurl {
url = mirror://gnome/sources/libwnck/3.4/libwnck-3.4.7.tar.xz;
sha256 = "d48ac9c7f50c0d563097f63d07bcc83744c7d92a1b4ef65e5faeab32b5ccb723";
};
outputs = [ "out" "dev" "devdoc" ];
outputBin = "dev";
patches = [ ./install_introspection_to_prefix.patch ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ intltool ];
propagatedBuildInputs = [ libX11 gtk3 ];
meta = {
platforms = stdenv.lib.platforms.linux;
};
}