Skip to content

Commit

Permalink
thepeg: unbreak on aarch64-darwin (NixOS#209017)
Browse files Browse the repository at this point in the history
  • Loading branch information
wegank authored Jan 5, 2023
1 parent 24f6889 commit fb1cb44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/libraries/physics/thepeg/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, boost, fastjet, gsl, hepmc2, lhapdf, rivet, zlib }:
{ lib, stdenv, fetchurl, autoreconfHook, boost, fastjet, gsl, hepmc2, lhapdf, rivet, zlib }:

stdenv.mkDerivation rec {
pname = "thepeg";
Expand All @@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
hash = "sha256-8hRzGXp2H8MpF7CKjSTSv6+T/1fzRB/WBdqZrJ3l1Qs=";
};

nativeBuildInputs = [ autoreconfHook ];

buildInputs = [ boost fastjet gsl hepmc2 lhapdf rivet zlib ];

configureFlags = [
Expand All @@ -25,7 +27,5 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Only;
maintainers = with maintainers; [ veprbl ];
platforms = platforms.unix;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
};
}

0 comments on commit fb1cb44

Please sign in to comment.