nixpkgs/pkgs/development/libraries/libwnck/default.nix
Vladimír Čunát a926bad1cc disable auto-detected introspection for libwnck and clutter
Didn't build as it was, and not needed anywhere AFAIK.
2013-08-06 08:06:26 +02:00

15 lines
400 B
Nix

{stdenv, fetchurl, pkgconfig, libX11, gtk, intltool}:
stdenv.mkDerivation {
name = "libwnck-2.30.7";
src = fetchurl {
url = mirror://gnome/sources/libwnck/2.30/libwnck-2.30.7.tar.xz;
sha256 = "15713yl0f8f3p99jzqqfmbicrdswd3vwpx7r3bkf1bgh6d9lvs4b";
};
buildInputs = [ pkgconfig libX11 gtk intltool ];
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
}