1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-08 02:38:11 +09:00

xarchiver: build with strictDeps=true (#406599)

This commit is contained in:
Colin 2025-06-07 09:15:14 +00:00 committed by GitHub
commit e147acaaad
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,7 @@
{
lib,
stdenv,
bash,
fetchFromGitHub,
gtk3,
pkg-config,
@ -32,13 +33,14 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
intltool
pkg-config
libxslt
makeWrapper
pkg-config
wrapGAppsHook3
];
buildInputs = [
gtk3
libxslt
bash # so patchShebangs can patch #!/bin/sh in xarchiver.tap
];
postFixup = ''
@ -58,6 +60,8 @@ stdenv.mkDerivation rec {
}
'';
strictDeps = true;
meta = {
broken = stdenv.hostPlatform.isDarwin;
description = "GTK frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";