Merge pull request #274849 from wegank/zpaq-darwin

zpaq, patool: add darwin support
This commit is contained in:
7c6f434c 2023-12-17 08:31:04 +00:00 committed by GitHub
commit 6656501fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, pytestCheckHook
, p7zip
, cabextract
@ -60,6 +60,8 @@ buildPythonPackage rec {
"test_unzip_file"
"test_zip"
"test_zip_file"
] ++ lib.optionals stdenv.isDarwin [
"test_ar"
];
meta = with lib; {

View File

@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
homepage = "http://mattmahoney.net/dc/zpaq.html";
license = licenses.gpl3Plus ;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
platforms = platforms.unix;
mainProgram = "zpaq";
};
}