nixpkgs/pkgs/tools/misc/desktop-file-utils/default.nix
2012-08-17 09:53:55 -04:00

19 lines
541 B
Nix

{ stdenv, fetchurl, pkgconfig, glib }:
stdenv.mkDerivation rec {
name = "desktop-file-utils-0.16";
src = fetchurl {
url = "http://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.bz2";
sha256 = "18y9am8n43rrnnldd1cy09ls39xz1gx3qczax2c4cjxayx5vwq3r";
};
buildInputs = [ pkgconfig glib ];
meta = {
homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils;
description = "Command line utilities for working with .desktop files";
platforms = stdenv.lib.platforms.linux;
};
}