thepeg: unbreak on aarch64-darwin (#209017)

authored by Weijia Wang and committed by GitHub fb1cb44b 24f6889f

+3 -3
+3 -3
pkgs/development/libraries/physics/thepeg/default.nix
··· 1 - { lib, stdenv, fetchurl, boost, fastjet, gsl, hepmc2, lhapdf, rivet, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "thepeg"; ··· 8 url = "https://www.hepforge.org/archive/thepeg/ThePEG-${version}.tar.bz2"; 9 hash = "sha256-8hRzGXp2H8MpF7CKjSTSv6+T/1fzRB/WBdqZrJ3l1Qs="; 10 }; 11 12 buildInputs = [ boost fastjet gsl hepmc2 lhapdf rivet zlib ]; 13 ··· 25 license = licenses.gpl3Only; 26 maintainers = with maintainers; [ veprbl ]; 27 platforms = platforms.unix; 28 - # never built on aarch64-darwin since first introduction in nixpkgs 29 - broken = stdenv.isDarwin && stdenv.isAarch64; 30 }; 31 }
··· 1 + { lib, stdenv, fetchurl, autoreconfHook, boost, fastjet, gsl, hepmc2, lhapdf, rivet, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "thepeg"; ··· 8 url = "https://www.hepforge.org/archive/thepeg/ThePEG-${version}.tar.bz2"; 9 hash = "sha256-8hRzGXp2H8MpF7CKjSTSv6+T/1fzRB/WBdqZrJ3l1Qs="; 10 }; 11 + 12 + nativeBuildInputs = [ autoreconfHook ]; 13 14 buildInputs = [ boost fastjet gsl hepmc2 lhapdf rivet zlib ]; 15 ··· 27 license = licenses.gpl3Only; 28 maintainers = with maintainers; [ veprbl ]; 29 platforms = platforms.unix; 30 }; 31 }