mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
04c7506f0f
- The split was only done where it seemed that some parts aren't really needed, which were mainly headers and gtk-doc. - Update style to be closer with what's common in nixpkgs. - Change explicit removal of icon theme cache into including the hicolor theme.
30 lines
836 B
Nix
30 lines
836 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, glib, gtk, libxfce4util
|
|
, libxfce4ui, garcon, xfconf }:
|
|
let
|
|
p_name = "xfce4-appfinder";
|
|
ver_maj = "4.12";
|
|
ver_min = "0";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "0ry5hin8xhgnkmm9vs7jq8blk1cnbyr0s18nm1j6nsm7360abm1a";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool glib gtk libxfce4util libxfce4ui garcon xfconf ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://docs.xfce.org/xfce/xfce4-appfinder/;
|
|
description = "Xfce application finder, a tool to locate and launch programs on your system";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.eelco ];
|
|
};
|
|
}
|
|
|