lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

libwnck: update

News claim it's important for Xfce-4.10, which still builds.

+16 -6
+16 -6
pkgs/development/libraries/libwnck/default.nix
··· 1 - {stdenv, fetchurl, pkgconfig, libX11, gtk, intltool}: 1 + { stdenv, fetchurl, pkgconfig, gtk, intltool, xorg }: 2 2 3 - stdenv.mkDerivation { 4 - name = "libwnck-2.30.7"; 3 + let 4 + ver_maj = "2.31"; 5 + ver_min = "0"; 6 + in 7 + stdenv.mkDerivation rec { 8 + name = "libwnck-${ver_maj}.${ver_min}"; 5 9 6 10 src = fetchurl { 7 - url = mirror://gnome/sources/libwnck/2.30/libwnck-2.30.7.tar.xz; 8 - sha256 = "15713yl0f8f3p99jzqqfmbicrdswd3vwpx7r3bkf1bgh6d9lvs4b"; 11 + url = "mirror://gnome/sources/libwnck/${ver_maj}/${name}.tar.xz"; 12 + sha256 = "17isfjvrzgj5znld2a7zsk9vd39q9wnsysnw5jr8iz410z935xw3"; 9 13 }; 10 14 11 - buildInputs = [ pkgconfig libX11 gtk intltool ]; 15 + buildInputs = [ pkgconfig gtk intltool xorg.libX11 xorg.libXres ]; 16 + # ?another optional: startup-notification 12 17 13 18 configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK 19 + 20 + meta = { 21 + description = "A library for creating task lists and pagers"; 22 + license = stdenv.lib.licenses.lgpl21; 23 + }; 14 24 }