22 lines
613 B
Nix
22 lines
613 B
Nix
{ stdenv, fetchurl, gettext, perl, perlXMLParser }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "intltool-${version}";
|
|
version = "0.51.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/intltool/trunk/${version}/+download/${name}.tar.gz";
|
|
sha256 = "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ gettext perl perlXMLParser ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Translation helper tool";
|
|
homepage = http://launchpad.net/intltool/;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|