nixpkgs/pkgs/tools/X11/xdg-utils/default.nix
Eelco Dolstra 48e1c2df80 * 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
2010-03-25 19:48:06 +00:00

19 lines
550 B
Nix

{ 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;
};
}