nixpkgs-suyu/pkgs/tools/misc/desktop-file-utils/default.nix

23 lines
656 B
Nix
Raw Normal View History

2017-04-21 02:44:30 +02:00
{ stdenv, fetchurl, pkgconfig, glib, libintlOrEmpty }:
with stdenv.lib;
stdenv.mkDerivation rec {
2013-11-17 15:14:20 +01:00
name = "desktop-file-utils-0.22";
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";
};
2017-04-21 02:44:30 +02:00
buildInputs = [ pkgconfig glib libintlOrEmpty ];
NIX_LDFLAGS = optionalString stdenv.isDarwin "-lintl";
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;
};
}