* 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:
parent
25ea790dd4
commit
48e1c2df80
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8404,6 +8404,10 @@ let
|
||||||
inherit (xlibs) libXcomposite libXfixes libXdamage libXrender;
|
inherit (xlibs) libXcomposite libXfixes libXdamage libXrender;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xdg_utils = import ../tools/X11/xdg-utils {
|
||||||
|
inherit stdenv fetchurl;
|
||||||
|
};
|
||||||
|
|
||||||
/* Doesn't work yet
|
/* Doesn't work yet
|
||||||
|
|
||||||
xen = builderDefsPackage (import ../applications/virtualization/xen) {
|
xen = builderDefsPackage (import ../applications/virtualization/xen) {
|
||||||
|
|
Loading…
Reference in New Issue