2018-03-14 19:15:06 +00: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 {
|
2017-12-03 20:17:32 +00:00
|
|
|
name = "desktop-file-utils-0.23";
|
2009-02-25 16:05:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.xz";
|
2017-12-03 20:17:32 +00:00
|
|
|
sha256 = "119kj2w0rrxkhg4f9cf5waa55jz1hj8933vh47vcjipcplql02bc";
|
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
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils;
|
|
|
|
description = "Command line utilities for working with .desktop files";
|
2017-04-21 01:44:30 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2010-08-16 08:45:39 +01:00
|
|
|
};
|
2009-02-25 16:05:13 +00:00
|
|
|
}
|