mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
531e4b80c9
Only acts on one-line dependency lists.
24 lines
683 B
Nix
24 lines
683 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, libintlOrEmpty }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "desktop-file-utils-0.22";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.xz";
|
|
sha256 = "1ianvr2a69yjv4rpyv30w7yjsmnsb23crrka5ndqxycj4rkk4dc4";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ 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";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|