lol

Merge pull request #216437 from andersk/uscan-dependencies

debian-devscripts: Add missing Perl dependencies for uscan

authored by

7c6f434c and committed by
GitHub
dd4ffff7 1a3b7b70

+17 -1
+1 -1
pkgs/tools/misc/debian-devscripts/default.nix
··· 27 27 28 28 nativeBuildInputs = [ makeWrapper pkg-config ]; 29 29 buildInputs = [ xz dpkg libxslt python setuptools curl gnupg diffutils bash-completion help2man ] ++ 30 - (with perlPackages; [ perl CryptSSLeay LWP TimeDate DBFile FileDesktopEntry ParseDebControl LWPProtocolHttps ]); 30 + (with perlPackages; [ perl CryptSSLeay LWP TimeDate DBFile FileDesktopEntry ParseDebControl LWPProtocolHttps Moo FileHomeDir IPCRun FileDirList FileTouch ]); 31 31 32 32 preConfigure = '' 33 33 export PERL5LIB="$PERL5LIB''${PERL5LIB:+:}${dpkg}";
+16
pkgs/top-level/perl-packages.nix
··· 9139 9139 }; 9140 9140 }; 9141 9141 9142 + FileDirList = buildPerlPackage { 9143 + version = "0.05"; 9144 + pname = "File-DirList"; 9145 + src = fetchurl { 9146 + url = "mirror://cpan/authors/id/T/TP/TPABA/File-DirList/File-DirList-0.05.tar.gz"; 9147 + sha256 = "sha256-mTt9dmLlV5hEih7azLmr0oHSvSO+fquZ9Wm44pYtO8M="; 9148 + }; 9149 + preCheck = '' 9150 + export HOME="$TMPDIR" 9151 + ''; 9152 + meta = { 9153 + description = "Provide a sorted list of directory content"; 9154 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 9155 + }; 9156 + }; 9157 + 9142 9158 FileFindIterator = buildPerlPackage { 9143 9159 pname = "File-Find-Iterator"; 9144 9160 version = "0.4";