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

26 lines
691 B
Nix
Raw Normal View History

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