mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
31 lines
893 B
Nix
31 lines
893 B
Nix
|
{stdenv, fetchurl, perl, perlXMLParser}:
|
||
|
let
|
||
|
s = # Generated upstream information
|
||
|
rec {
|
||
|
baseName="intltool";
|
||
|
version="0.50.2";
|
||
|
name="intltool-0.50.2";
|
||
|
hash="01j4yd7i84n9nk4ccs6yifg84pp68nr9by57jdbhj7dpdxf5rwk7";
|
||
|
url="https://launchpad.net/intltool/trunk/0.50.2/+download/intltool-0.50.2.tar.gz";
|
||
|
sha256="01j4yd7i84n9nk4ccs6yifg84pp68nr9by57jdbhj7dpdxf5rwk7";
|
||
|
};
|
||
|
propagatedBuildInputs = [perl perlXMLParser];
|
||
|
buildInputs = [];
|
||
|
in
|
||
|
stdenv.mkDerivation rec {
|
||
|
inherit (s) name version;
|
||
|
src = fetchurl {
|
||
|
inherit (s) url sha256;
|
||
|
};
|
||
|
inherit propagatedBuildInputs buildInputs;
|
||
|
|
||
|
meta = {
|
||
|
description = "Translation helper tool";
|
||
|
homepage = "http://launchpad.net/intltool/";
|
||
|
license = stdenv.lib.licenses.gpl2plus;
|
||
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||
|
platforms = stdenv.lib.platforms.linux;
|
||
|
inherit (s) version;
|
||
|
};
|
||
|
}
|