summary refs log tree commit diff
path: root/pkgs/tools/misc/desktop-file-utils/default.nix
blob: e89222af74b4746d9ae32393e9c8d235e7e13f77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pkgconfig, glib, libintl }:

with stdenv.lib;

stdenv.mkDerivation rec {
  name = "desktop-file-utils-0.23";

  src = fetchurl {
    url = "http://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.xz";
    sha256 = "119kj2w0rrxkhg4f9cf5waa55jz1hj8933vh47vcjipcplql02bc";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ glib libintl ];

  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;
  };
}