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