* Added Xfce's appfinder application.
svn path=/nixpkgs/trunk/; revision=31611
This commit is contained in:
parent
39204c8649
commit
2f1edcc1eb
24
pkgs/desktops/xfce-4.8/core/xfce4-appfinder.nix
Normal file
24
pkgs/desktops/xfce-4.8/core/xfce4-appfinder.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, glib, gtk, libxfce4util
|
||||
, libxfce4ui, garcon, xfconf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xfce4-appfinder-4.8.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://archive.xfce.org/src/xfce/xfce4-appfinder/4.8/${name}.tar.bz2";
|
||||
sha1 = "444bbcbded8d2346f9b9beb57ec7adaf556811c9";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig intltool glib gtk libxfce4util libxfce4ui garcon xfconf ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.xfce.org/;
|
||||
description = "Xfce application finder, a tool to locate and launch programs on your system";
|
||||
license = "GPLv2+";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||
};
|
||||
}
|
@ -58,9 +58,9 @@ rec {
|
||||
|
||||
gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { };
|
||||
|
||||
# !!! Add xfce4-appfinder
|
||||
xfce4_appfinder = callPackage ./core/xfce4-appfinder.nix { };
|
||||
|
||||
|
||||
|
||||
#### APPLICATIONS
|
||||
|
||||
terminal = callPackage ./applications/terminal.nix {
|
||||
|
Loading…
x
Reference in New Issue
Block a user