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