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