2016-09-11 22:24:51 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk2, intltool, xorg }:
|
2009-09-30 06:27:34 +01:00
|
|
|
|
2013-09-07 22:36:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-04-25 07:46:07 +01:00
|
|
|
pname = "libwnck";
|
|
|
|
version = "2.31.0";
|
2012-03-08 22:45:38 +00:00
|
|
|
|
2009-09-30 06:27:34 +01:00
|
|
|
src = fetchurl {
|
2019-04-25 07:46:07 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2013-09-07 22:36:21 +01:00
|
|
|
sha256 = "17isfjvrzgj5znld2a7zsk9vd39q9wnsysnw5jr8iz410z935xw3";
|
2009-09-30 06:27:34 +01:00
|
|
|
};
|
2012-03-08 22:45:38 +00:00
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-10-28 18:20:11 +00:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 intltool xorg.libX11 xorg.libXres ];
|
2013-09-07 22:36:21 +01:00
|
|
|
# ?another optional: startup-notification
|
2013-08-06 07:06:26 +01:00
|
|
|
|
|
|
|
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
|
2013-09-07 22:36:21 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A library for creating task lists and pagers";
|
2019-05-04 14:59:55 +01:00
|
|
|
homepage = "https://gitlab.gnome.org/GNOME/libwnck";
|
2013-09-07 22:36:21 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
2019-05-04 14:59:55 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ johnazoidberg ];
|
2013-09-07 22:36:21 +01:00
|
|
|
};
|
2009-09-30 06:27:34 +01:00
|
|
|
}
|