2017-04-21 02:44:30 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libintlOrEmpty }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-08-16 09:45:39 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-11-17 15:14:20 +01:00
|
|
|
name = "desktop-file-utils-0.22";
|
2009-02-25 17:05:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-11-17 15:14:20 +01:00
|
|
|
url = "http://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.xz";
|
|
|
|
sha256 = "1ianvr2a69yjv4rpyv30w7yjsmnsb23crrka5ndqxycj4rkk4dc4";
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
2010-08-16 09:45:39 +02:00
|
|
|
|
2017-04-21 02:44:30 +02:00
|
|
|
buildInputs = [ pkgconfig glib libintlOrEmpty ];
|
|
|
|
|
|
|
|
NIX_LDFLAGS = optionalString stdenv.isDarwin "-lintl";
|
2010-08-16 09:45:39 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils;
|
|
|
|
description = "Command line utilities for working with .desktop files";
|
2017-04-21 02:44:30 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2010-08-16 09:45:39 +02:00
|
|
|
};
|
2009-02-25 17:05:13 +01:00
|
|
|
}
|