lol

Merge pull request #252177 from alexfmpe/ispc-1.21

ispc: 1.20.0 -> 1.21.0

authored by

Mario Rodas and committed by
GitHub
56a65bba 45a5b899

+3 -3
+3 -3
pkgs/development/compilers/ispc/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "ispc"; 9 - version = "1.20.0"; 10 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "sha256:06wgvfbc6nh5c7yili47h2gzl0ykcwnvyizy499kb6gsplflf9gh"; 16 }; 17 18 nativeBuildInputs = [ cmake which m4 bison flex python3 llvmPackages.libllvm.dev tbb ] ++ lib.lists.optionals stdenv.isDarwin [ xcode ]; ··· 71 description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language"; 72 license = licenses.bsd3; 73 platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; # TODO: buildable on more platforms? 74 - maintainers = with maintainers; [ aristid thoughtpolice athas ]; 75 }; 76 }
··· 6 7 stdenv.mkDerivation rec { 8 pname = "ispc"; 9 + version = "1.21.0"; 10 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 rev = "v${version}"; 15 + sha256 = "sha256:029rlkh7vh8hxg8ygpspxb9hvw5q97m460zbxwb7xnx1jnq8msh4"; 16 }; 17 18 nativeBuildInputs = [ cmake which m4 bison flex python3 llvmPackages.libllvm.dev tbb ] ++ lib.lists.optionals stdenv.isDarwin [ xcode ]; ··· 71 description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language"; 72 license = licenses.bsd3; 73 platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; # TODO: buildable on more platforms? 74 + maintainers = with maintainers; [ aristid thoughtpolice athas alexfmpe ]; 75 }; 76 }