summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-31 18:38:21 -0500
committerGitHub <noreply@github.com>2023-08-31 18:38:21 -0500
commit56a65bbad598126ac081392250d183bedee4d406 (patch)
treeed645c9cca48dcc4f40d516b2cf32adb0b22ad8c
parent45a5b89988e92de27657714ba42ee724b4a1a31b (diff)
parent46c7997f40ea824c0992fbf9453dde7c5525bbef (diff)
downloadnixpkgs-56a65bbad598126ac081392250d183bedee4d406.tar
nixpkgs-56a65bbad598126ac081392250d183bedee4d406.tar.gz
nixpkgs-56a65bbad598126ac081392250d183bedee4d406.tar.bz2
nixpkgs-56a65bbad598126ac081392250d183bedee4d406.tar.lz
nixpkgs-56a65bbad598126ac081392250d183bedee4d406.tar.xz
nixpkgs-56a65bbad598126ac081392250d183bedee4d406.tar.zst
nixpkgs-56a65bbad598126ac081392250d183bedee4d406.zip
Merge pull request #252177 from alexfmpe/ispc-1.21
ispc: 1.20.0 -> 1.21.0
-rw-r--r--pkgs/development/compilers/ispc/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/ispc/default.nix b/pkgs/development/compilers/ispc/default.nix
index 4137847f47d..606d77c1737 100644
--- a/pkgs/development/compilers/ispc/default.nix
+++ b/pkgs/development/compilers/ispc/default.nix
@@ -6,13 +6,13 @@
 
 stdenv.mkDerivation rec {
   pname   = "ispc";
-  version = "1.20.0";
+  version = "1.21.0";
 
   src = fetchFromGitHub {
     owner  = pname;
     repo   = pname;
     rev    = "v${version}";
-    sha256 = "sha256:06wgvfbc6nh5c7yili47h2gzl0ykcwnvyizy499kb6gsplflf9gh";
+    sha256 = "sha256:029rlkh7vh8hxg8ygpspxb9hvw5q97m460zbxwb7xnx1jnq8msh4";
   };
 
   nativeBuildInputs = [ cmake which m4 bison flex python3 llvmPackages.libllvm.dev tbb ] ++ lib.lists.optionals stdenv.isDarwin [ xcode ];
@@ -71,6 +71,6 @@ stdenv.mkDerivation rec {
     description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language";
     license     = licenses.bsd3;
     platforms   = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; # TODO: buildable on more platforms?
-    maintainers = with maintainers; [ aristid thoughtpolice athas ];
+    maintainers = with maintainers; [ aristid thoughtpolice athas alexfmpe ];
   };
 }