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