* Added xdg-utils, a package that contains desktop integration

commands such as `xdg-open' (which opens a URL with the user's
  default browser).

svn path=/nixpkgs/trunk/; revision=20829
This commit is contained in:
Eelco Dolstra 2010-03-25 19:48:06 +00:00
parent 25ea790dd4
commit 48e1c2df80
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "xdg-utils-1.0.2";
src = fetchurl {
url = "http://portland.freedesktop.org/download/${name}.tgz";
sha256 = "1b019d3r1379b60p33d6z44kx589xjgga62ijz9vha95dg8vgbi1";
};
meta = {
homepage = http://portland.freedesktop.org/wiki/;
description = "A set of command line tools that assist applications with a variety of desktop integration tasks";
license = "free";
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -8404,6 +8404,10 @@ let
inherit (xlibs) libXcomposite libXfixes libXdamage libXrender;
};
xdg_utils = import ../tools/X11/xdg-utils {
inherit stdenv fetchurl;
};
/* Doesn't work yet
xen = builderDefsPackage (import ../applications/virtualization/xen) {