about summary refs log tree commit diff
path: root/pkgs/development/libraries/libwnck/default.nix
blob: d2855afc43ee3e263f19640c4e11d2f949043971 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{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
}