208d1f24db
- forgotten mousepad update, including some wrapping magic - dealing with panel plugins (either fix or mark as broken) CC maintainer @AndersonTorres. - remove some libxfcegui4 occurrences, as it's being phased out - minor stuff
25 lines
813 B
Nix
25 lines
813 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk, libunique }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
p_name = "xfce4-notes-plugin";
|
|
ver_maj = "1.7";
|
|
ver_min = "7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "05sjbwgch1j93m3r23ksbjnpfk11sf7xjmbb9pm5vl3snc2s3fm7";
|
|
};
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk libunique ];
|
|
|
|
meta = {
|
|
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
|
|
description = "Sticky notes plugin for Xfce panel";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
broken = true;
|
|
};
|
|
}
|