1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/X11/xdg-utils/default.nix
2012-10-04 13:38:26 +02:00

23 lines
663 B
Nix

{ stdenv, fetchurl, file }:
stdenv.mkDerivation rec {
name = "xdg-utils-1.0.2";
src = fetchurl {
url = "http://portland.freedesktop.org/download/${name}.tgz";
sha256 = "1b019d3r1379b60p33d6z44kx589xjgga62ijz9vha95dg8vgbi1";
};
postInstall = ''
substituteInPlace $out/bin/xdg-mime --replace /usr/bin/file ${file}/bin/file
'';
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;
};
}