21f17d69f6
Build-tested on x86_64 Linux & Mac.
25 lines
674 B
Nix
25 lines
674 B
Nix
{stdenv, fetchurl, pkgconfig, gettext, perl, perlXMLParser, intltool
|
|
, libxml2, glib}:
|
|
|
|
let version = "1.5"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "shared-mime-info-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://freedesktop.org/~hadess/${name}.tar.xz";
|
|
sha256 = "1021x95xbkfc5ipx3gi2rdc0y6x2pv36yyzxc5pg6nr6xd02hhfn";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig gettext intltool perl perlXMLParser libxml2 glib
|
|
];
|
|
|
|
meta = {
|
|
inherit version;
|
|
description = "A database of common MIME types";
|
|
homepage = http://freedesktop.org/wiki/Software/shared-mime-info;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|