forked from mirrors/nixpkgs
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:
parent
bae7da07d8
commit
b02d72f754
|
@ -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 {
|
InlineJava = buildPerlPackage rec {
|
||||||
name = "Inline-Java-0.52";
|
name = "Inline-Java-0.52";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue