* Latest shared-mime-info.

* Latest Catalyst runtime.

svn path=/nixpkgs/trunk/; revision=14086
This commit is contained in:
Eelco Dolstra
2009-02-16 14:57:35 +00:00
parent b0ad70d91e
commit 1b849c8282
5 changed files with 50 additions and 24 deletions
@@ -0,0 +1,17 @@
{stdenv, fetchurl, pkgconfig, gettext, intltool, libxml2, glib}:
stdenv.mkDerivation rec {
name = "shared-mime-info-0.51";
src = fetchurl {
url = "http://freedesktop.org/~hadess/${name}.tar.bz2";
sha256 = "1n7fn3vnqdq5c4xjyflwryxdb75cwsmw39hdpjy90swd841pw90w";
};
buildInputs = [pkgconfig gettext intltool libxml2 glib];
meta = {
description = "A database of common MIME types";
homepage = http://freedesktop.org/wiki/Software/shared-mime-info;
};
}