Merge pull request #274849 from wegank/zpaq-darwin

zpaq, patool: add darwin support

authored by 7c6f434c and committed by GitHub 6656501f 43eaeabe

+4 -2
+3 -1
pkgs/development/python-modules/patool/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 - , fetchpatch 5 , pytestCheckHook 6 , p7zip 7 , cabextract ··· 60 "test_unzip_file" 61 "test_zip" 62 "test_zip_file" 63 ]; 64 65 meta = with lib; {
··· 1 { lib 2 + , stdenv 3 , buildPythonPackage 4 , fetchFromGitHub 5 , pytestCheckHook 6 , p7zip 7 , cabextract ··· 60 "test_unzip_file" 61 "test_zip" 62 "test_zip_file" 63 + ] ++ lib.optionals stdenv.isDarwin [ 64 + "test_ar" 65 ]; 66 67 meta = with lib; {
+1 -1
pkgs/tools/archivers/zpaq/default.nix
··· 27 homepage = "http://mattmahoney.net/dc/zpaq.html"; 28 license = licenses.gpl3Plus ; 29 maintainers = with maintainers; [ raskin ]; 30 - platforms = platforms.linux; 31 mainProgram = "zpaq"; 32 }; 33 }
··· 27 homepage = "http://mattmahoney.net/dc/zpaq.html"; 28 license = licenses.gpl3Plus ; 29 maintainers = with maintainers; [ raskin ]; 30 + platforms = platforms.unix; 31 mainProgram = "zpaq"; 32 }; 33 }