2013-09-07 23:36:21 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk, intltool, xorg }:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
2013-09-07 23:36:21 +02:00
|
|
|
let
|
|
|
|
ver_maj = "2.31";
|
|
|
|
ver_min = "0";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libwnck-${ver_maj}.${ver_min}";
|
2012-03-08 23:45:38 +01:00
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2013-09-07 23:36:21 +02:00
|
|
|
url = "mirror://gnome/sources/libwnck/${ver_maj}/${name}.tar.xz";
|
|
|
|
sha256 = "17isfjvrzgj5znld2a7zsk9vd39q9wnsysnw5jr8iz410z935xw3";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-08 23:45:38 +01:00
|
|
|
|
2013-09-07 23:36:21 +02:00
|
|
|
buildInputs = [ pkgconfig gtk intltool xorg.libX11 xorg.libXres ];
|
|
|
|
# ?another optional: startup-notification
|
2013-08-06 08:06:26 +02:00
|
|
|
|
|
|
|
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
|
2013-09-07 23:36:21 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A library for creating task lists and pagers";
|
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
};
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|