2016-09-11 23:24:51 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk2, 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
|
|
|
|
2016-09-01 11:07:23 +02:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-10-28 19:20:11 +01:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 intltool xorg.libX11 xorg.libXres ];
|
2013-09-07 23:36:21 +02:00
|
|
|
# ?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
|
|
|
}
|