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

Configure Feed

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

mosml: fix build error on darwin

+2 -2
+2 -2
pkgs/development/compilers/mosml/default.nix
··· 6 6 7 7 buildInputs = [ gmp perl ]; 8 8 9 - makeFlags = "PREFIX=$(out)"; 9 + makeFlags = [ "PREFIX=$(out)" ] ++ stdenv.lib.optionals stdenv.isDarwin [ "CC=cc" ]; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/kfl/mosml/archive/ver-${version}.tar.gz"; ··· 23 23 ''; 24 24 homepage = https://mosml.org/; 25 25 license = licenses.gpl2; 26 - platforms = platforms.linux; 26 + platforms = platforms.unix; 27 27 maintainers = with maintainers; [ vaibhavsagar ]; 28 28 }; 29 29 }