Merge pull request #101012 from r-burns/perl-linux

perlPackages.Linux*: disable on non-Linux platforms
This commit is contained in:
StigP 2020-10-19 14:20:10 +00:00 committed by GitHub
commit 76fe85fcdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -10984,6 +10984,7 @@ let
meta = {
description = "Perl extension to detect on which Linux distribution we are running";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
platforms = stdenv.lib.platforms.linux;
};
};
@ -11000,6 +11001,7 @@ let
meta = {
description = "Linux specific special filehandles";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
platforms = stdenv.lib.platforms.linux;
};
};
@ -11011,6 +11013,10 @@ let
sha256 = "0crlxmaa4lsgdjm5p9ib8rdxiy70qj1s68za3q3v57v8ll6s4hfx";
};
propagatedBuildInputs = [ commonsense ];
meta = with stdenv.lib; {
platforms = platforms.linux;
};
};
ListAllUtils = buildPerlPackage {