Merge pull request #278955 from lovesegfault/resolve-march-native-5.0.2

authored by Bernardo Meurer and committed by GitHub 718f5903 1d28bbd4

+3 -3
+3 -3
pkgs/development/tools/resolve-march-native/default.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "resolve-march-native"; 9 - version = "2.2.0"; 9 + version = "5.0.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "hartwork"; 13 13 repo = pname; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-vJzkVL23fvFO1pGJwdPiqR73K9iNJ6OglVxL5tCVa2U="; 15 + hash = "sha256-fkiEWZvg/h8Gn0TL3Ov8aq2cAG5VncUTrVcUTRNOx+Y="; 16 16 }; 17 17 18 18 # NB: The tool uses gcc at runtime to resolve the -march=native flags ··· 25 25 homepage = "https://github.com/hartwork/resolve-march-native"; 26 26 license = licenses.gpl2Plus; 27 27 maintainers = with maintainers; [ lovesegfault ]; 28 - platforms = platforms.linux; 28 + platforms = platforms.unix; 29 29 }; 30 30 }