nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ats-acc: fix build

+9
+4
pkgs/development/compilers/ats2/default.nix
··· 34 34 hash = "sha256-UWgDjFojPBYgykrCrJyYvVWY+Gc5d4aRGjTWjc528AM="; 35 35 }; 36 36 37 + postPatch = lib.optionalString stdenv.cc.isClang '' 38 + sed -i 's/gcc/clang/g' utils/*/DATS/atscc_util.dats 39 + ''; 40 + 37 41 buildInputs = [ gmp ]; 38 42 39 43 # Disable parallel build, errors:
+5
pkgs/development/tools/ats-acc/default.nix
··· 11 11 sha256 = "sha256-Wp39488YNL40GKp4KaJwhi75PsYP+gMtrZqAvs4Q/sw="; 12 12 }; 13 13 14 + postPatch = '' 15 + substituteInPlace Makefile \ 16 + --replace "mv acc \''$(PATSHOME)/bin/" "install -Dm755 acc ${placeholder "out"}/bin/" 17 + ''; 18 + 14 19 nativeBuildInputs = [ ats2 ]; 15 20 16 21 meta = with lib; {