about summary refs log tree commit diff
path: root/pkgs/development/tools/resolve-march-native
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2024-01-05 13:41:57 -0300
committerBernardo Meurer <bernardo@meurer.org>2024-01-05 13:41:57 -0300
commit781a005d9ed919bd0061ba876cf3fbcc51678d18 (patch)
tree5cdd9d394782258eec0aa0d63b347acfffd3a27b /pkgs/development/tools/resolve-march-native
parent535caea95c5957391e878fe43fdaf81e0946e869 (diff)
resolve-march-native: 2.2.0 -> 5.0.2
Diffstat (limited to 'pkgs/development/tools/resolve-march-native')
-rw-r--r--pkgs/development/tools/resolve-march-native/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/resolve-march-native/default.nix b/pkgs/development/tools/resolve-march-native/default.nix
index cd568d10e17c2..ae15c490f1862 100644
--- a/pkgs/development/tools/resolve-march-native/default.nix
+++ b/pkgs/development/tools/resolve-march-native/default.nix
@@ -6,13 +6,13 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "resolve-march-native";
-  version = "2.2.0";
+  version = "5.0.2";
 
   src = fetchFromGitHub {
     owner = "hartwork";
     repo = pname;
     rev = "refs/tags/${version}";
-    hash = "sha256-vJzkVL23fvFO1pGJwdPiqR73K9iNJ6OglVxL5tCVa2U=";
+    hash = "sha256-fkiEWZvg/h8Gn0TL3Ov8aq2cAG5VncUTrVcUTRNOx+Y=";
   };
 
   # NB: The tool uses gcc at runtime to resolve the -march=native flags
@@ -25,6 +25,6 @@ python3Packages.buildPythonApplication rec {
     homepage = "https://github.com/hartwork/resolve-march-native";
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ lovesegfault ];
-    platforms = platforms.linux;
+    platforms = platforms.unix;
   };
 }