From b08ea14f5ed40aff6e4e18628db186595387a7b5 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Mon, 2 Jun 2025 21:38:24 -0400 Subject: [PATCH] xarchiver: enable on darwin Signed-off-by: Ihar Hrachyshka --- pkgs/by-name/xa/xarchiver/package.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/xa/xarchiver/package.nix b/pkgs/by-name/xa/xarchiver/package.nix index a2cf7b39fa38..dc6be6f6d251 100644 --- a/pkgs/by-name/xa/xarchiver/package.nix +++ b/pkgs/by-name/xa/xarchiver/package.nix @@ -17,6 +17,7 @@ gzip, lhasa, wrapGAppsHook3, + desktopToDarwinBundle, }: stdenv.mkDerivation rec { @@ -35,7 +36,8 @@ stdenv.mkDerivation rec { pkg-config makeWrapper wrapGAppsHook3 - ]; + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ desktopToDarwinBundle ]; + buildInputs = [ gtk3 libxslt @@ -59,7 +61,6 @@ stdenv.mkDerivation rec { ''; meta = { - broken = stdenv.hostPlatform.isDarwin; description = "GTK frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)"; homepage = "https://github.com/ib/xarchiver"; maintainers = [ lib.maintainers.domenkozar ];