added darwin ass supported platform for meld, added get text as requirement for scroollkeeper

This commit is contained in:
Ivan Brkanac 2014-09-09 15:21:04 +02:00
parent 268a5618f4
commit 841f45b231
2 changed files with 3 additions and 3 deletions

View file

@ -28,6 +28,6 @@ stdenv.mkDerivation {
description = "Visual diff and merge tool";
homepage = http://meld.sourceforge.net;
license = stdenv.lib.licenses.gpl2Plus;
platforms = platforms.linux;
platforms = platforms.linux ++ stdenv.lib.platforms.darwin;
};
}

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, pkgconfig, perl, perlXMLParser, libxml2, libxslt, docbook_xml_dtd_42, automake}:
{stdenv, fetchurl, pkgconfig, perl, perlXMLParser, libxml2, libxslt, docbook_xml_dtd_42, automake, gettext}:
stdenv.mkDerivation {
name = "scrollkeeper-0.3.14";
@ -13,6 +13,6 @@ stdenv.mkDerivation {
cp ${automake}/share/automake*/config.{sub,guess} .
";
buildInputs = [pkgconfig perl perlXMLParser libxml2 libxslt];
buildInputs = [pkgconfig perl perlXMLParser libxml2 libxslt gettext];
configureFlags = "--with-xml-catalog=${docbook_xml_dtd_42}/xml/dtd/docbook/docbook.cat";
}