mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
intltool: refactor
This commit is contained in:
parent
142b48688c
commit
4b07d16827
2 changed files with 14 additions and 28 deletions
|
@ -1,33 +1,21 @@
|
|||
{ stdenv, fetchurl, perl, perlXMLParser, gettext }:
|
||||
let
|
||||
s = # Generated upstream information
|
||||
rec {
|
||||
baseName="intltool";
|
||||
version="0.51.0";
|
||||
name="${baseName}-${version}";
|
||||
hash="1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
|
||||
url="https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz";
|
||||
sha256="1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
|
||||
};
|
||||
propagatedBuildInputs = [perl perlXMLParser];
|
||||
buildInputs = [];
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit (s) name version;
|
||||
{ stdenv, fetchurl, gettext, perl, perlXMLParser }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "intltool-${version}";
|
||||
version = "0.51.0";
|
||||
|
||||
src = fetchurl {
|
||||
inherit (s) url sha256;
|
||||
url = "https://launchpad.net/intltool/trunk/${version}/+download/${name}.tar.gz";
|
||||
sha256 = "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
|
||||
};
|
||||
inherit buildInputs;
|
||||
|
||||
# not needed by intltool itself but (probably) needed for its usage
|
||||
propagatedBuildInputs = propagatedBuildInputs ++ [ gettext ];
|
||||
propagatedBuildInputs = [ gettext perl perlXMLParser ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Translation helper tool";
|
||||
homepage = "http://launchpad.net/intltool/";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
inherit (s) version;
|
||||
homepage = http://launchpad.net/intltool/;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
attribute_name intltool
|
||||
url https://launchpad.net/intltool/+download
|
Loading…
Reference in a new issue