mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
perlPackages::Filelchown: Init at 0.02
This commit is contained in:
parent
ff1d281e55
commit
1a7dc1f86b
1 changed files with 26 additions and 0 deletions
|
@ -5104,6 +5104,19 @@ let self = _self // overrides; _self = with self; {
|
|||
buildInputs = [ PerlOSType ];
|
||||
};
|
||||
|
||||
ExtUtilsCChecker = buildPerlPackage rec {
|
||||
name = "ExtUtils-CChecker-0.10";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/authors/id/P/PE/PEVANS/${name}.tar.gz";
|
||||
sha256 = "50bfe76870fc1510f56bae4fa2dce0165d9ac4af4e7320d6b8fda14dfea4be0b";
|
||||
};
|
||||
buildInputs = [ ModuleBuild TestFatal ];
|
||||
meta = {
|
||||
description = "Configure-time utilities for using C headers,";
|
||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||
};
|
||||
};
|
||||
|
||||
ExtUtilsConfig = buildPerlPackage {
|
||||
name = "ExtUtils-Config-0.007";
|
||||
src = fetchurl {
|
||||
|
@ -5540,6 +5553,19 @@ let self = _self // overrides; _self = with self; {
|
|||
propagatedBuildInputs = [ CryptRijndael ];
|
||||
};
|
||||
|
||||
Filelchown = buildPerlPackage rec {
|
||||
name = "File-lchown-0.02";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/authors/id/P/PE/PEVANS/${name}.tar.gz";
|
||||
sha256 = "a02fbf285406a8a4d9399284f032f2d55c56975154c2e1674bd109837b8096ec";
|
||||
};
|
||||
buildInputs = [ ExtUtilsCChecker ModuleBuild ];
|
||||
meta = {
|
||||
description = "Modify attributes of symlinks without dereferencing them";
|
||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||
};
|
||||
};
|
||||
|
||||
FileLibMagic = buildPerlPackage rec {
|
||||
name = "File-LibMagic-1.16";
|
||||
src = fetchurl {
|
||||
|
|
Loading…
Reference in a new issue