mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Intltool 0.40.5 (from GNOME 2.26.0).
svn path=/nixpkgs/branches/stdenv-updates/; revision=14667
This commit is contained in:
parent
8a13ebda3a
commit
9f9aa331fc
@ -110,7 +110,6 @@ rec {
|
||||
|
||||
intltool = import ./intltool.nix {
|
||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser;
|
||||
input = platform.intltool;
|
||||
};
|
||||
|
||||
|
||||
|
@ -1,6 +1,13 @@
|
||||
{input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser}:
|
||||
{stdenv, fetchurl, pkgconfig, perl, perlXMLParser}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit (input) name src;
|
||||
buildInputs = [pkgconfig perl perlXMLParser];
|
||||
stdenv.mkDerivation rec {
|
||||
name = "intltool-0.40.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.acc.umu.se/pub/GNOME/sources/intltool/0.40/${name}.tar.bz2";
|
||||
sha256 = "0r1vkvy5xzqk01yl6a0xlrry39bra24alkrx6279b77hc62my7jd";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ];
|
||||
propagatedBuildInputs = [ perl perlXMLParser ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user