nixpkgs/pkgs/tools/misc/desktop-file-utils/default.nix

23 lines
641 B
Nix
Raw Normal View History

2018-03-14 19:15:06 +00:00
{ stdenv, fetchurl, pkgconfig, glib, libintl }:
2017-04-21 00:44:30 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2017-12-03 20:17:32 +00:00
name = "desktop-file-utils-0.23";
src = fetchurl {
url = "https://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.xz";
2017-12-03 20:17:32 +00:00
sha256 = "119kj2w0rrxkhg4f9cf5waa55jz1hj8933vh47vcjipcplql02bc";
};
nativeBuildInputs = [ pkgconfig ];
2018-03-14 19:15:06 +00:00
buildInputs = [ glib libintl ];
meta = {
homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils;
description = "Command line utilities for working with .desktop files";
2017-04-21 00:44:30 +00:00
platforms = platforms.linux ++ platforms.darwin;
2018-09-11 21:32:49 +00:00
license = licenses.gpl2;
};
}