Merge pull request #206371 from wegank/feroxbuster

feroxbuster: fix build on aarch64-linux

authored by Fabian Affolter and committed by GitHub fde05a82 2054bb5d

+6 -2
+6 -2
pkgs/tools/security/feroxbuster/default.nix
··· 18 18 hash = "sha256-B6FeY5pWW5+y/0HlVedkm8ol2z9GXgEYe5j7/uMhqsw="; 19 19 }; 20 20 21 + # disable linker overrides on aarch64-linux 22 + postPatch = '' 23 + rm .cargo/config 24 + ''; 25 + 21 26 cargoSha256 = "sha256-OFgt8yu2wlvkP/wjlmRRl8UyD9MUx9/0Rcs6K8jLkjo="; 22 27 23 28 OPENSSL_NO_VENDOR = true; ··· 40 45 homepage = "https://github.com/epi052/feroxbuster"; 41 46 license = with licenses; [ mit ]; 42 47 maintainers = with maintainers; [ fab ]; 43 - # never built on aarch64-linux since first introduction in nixpkgs 44 - broken = stdenv.isLinux && stdenv.isAarch64; 48 + platforms = platforms.unix; 45 49 }; 46 50 } 47 51