perl-Inline-C: 0.76 -> 0.78

Also minor general cleanups.
This commit is contained in:
Robert Helgesson 2017-11-01 14:52:00 +01:00
parent 2d145b03ee
commit 01ab800212
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -7423,24 +7423,21 @@ let self = _self // overrides; _self = with self; {
};
InlineC = buildPerlPackage rec {
name = "Inline-C-0.76";
name = "Inline-C-0.78";
src = fetchurl {
url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz";
sha256 = "0dcs39zjiglif3ss8p8yl0jyqk7qvc9g1ad9wi4kq79k9lxp3s92";
url = "mirror://cpan/authors/id/T/TI/TINITA/${name}.tar.gz";
sha256 = "9a7804d85c01a386073d2176582b0262b6374c5c0341049da3ef84c6f53efbc7";
};
buildInputs = [ FileCopyRecursive FileShareDirInstall TestWarn YAMLLibYAML ];
propagatedBuildInputs = [ Inline ParseRecDescent Pegex ];
postPatch = ''
# this test will fail with chroot builds
rm -f t/08taint.t
rm -f t/28autowrap.t
'';
buildInputs = [ TestWarn FileCopyRecursive FileShareDirInstall IOAll Pegex YAMLLibYAML ];
propagatedBuildInputs = [ Inline ];
meta = {
description = "Write Perl Subroutines in C";
homepage = https://github.com/ingydotnet/inline-c-pm;
description = "C Language Support for Inline";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};