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