perl-packages: Add new package Inline-C, v0.62.

This is needed for running the test suite of the i3 window manager.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-08-01 05:16:20 +02:00
parent bae7da07d8
commit b02d72f754
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -4634,6 +4634,28 @@ let self = _self // overrides; _self = with self; {
};
};
InlineC = buildPerlPackage rec {
name = "Inline-C-0.62";
src = fetchurl {
url = "mirror://cpan/authors/id/E/ET/ETJ/${name}.tar.gz";
sha256 = "0clggdpj5mmi35vm2991f9jsgv2a3s8r4f1bd88xxk8akv5b8i3r";
};
postPatch = ''
# this test will fail with chroot builds
rm -f t/08taint.t
'';
buildInputs = [ TestWarn FileCopyRecursive ];
propagatedBuildInputs = [ Inline ];
meta = {
description = "Write Perl Subroutines in C";
license = "perl";
};
};
InlineJava = buildPerlPackage rec {
name = "Inline-Java-0.52";