From 2f1edcc1eb60dd82efa6e42bd270307cc5b56a6d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 17 Jan 2012 18:08:09 +0000 Subject: [PATCH] * Added Xfce's appfinder application. svn path=/nixpkgs/trunk/; revision=31611 --- .../xfce-4.8/core/xfce4-appfinder.nix | 24 +++++++++++++++++++ pkgs/desktops/xfce-4.8/default.nix | 4 ++-- 2 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 pkgs/desktops/xfce-4.8/core/xfce4-appfinder.nix diff --git a/pkgs/desktops/xfce-4.8/core/xfce4-appfinder.nix b/pkgs/desktops/xfce-4.8/core/xfce4-appfinder.nix new file mode 100644 index 00000000000..b8165ebb178 --- /dev/null +++ b/pkgs/desktops/xfce-4.8/core/xfce4-appfinder.nix @@ -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 ]; + }; +} diff --git a/pkgs/desktops/xfce-4.8/default.nix b/pkgs/desktops/xfce-4.8/default.nix index 4b82ff04307..971071c3acc 100644 --- a/pkgs/desktops/xfce-4.8/default.nix +++ b/pkgs/desktops/xfce-4.8/default.nix @@ -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 {