25 lines
674 B
Nix
25 lines
674 B
Nix
{stdenv, fetchurl, pkgconfig, gettext, perl, perlXMLParser, intltool
|
|
, libxml2, glib}:
|
|
|
|
let version = "1.8"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "shared-mime-info-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://freedesktop.org/~hadess/${name}.tar.xz";
|
|
sha256 = "1sc96lv9dp1lkvs8dh3ngm3hbjb274d363dl9avhb61il3qmxx9a";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|