7 python3Packages.buildPythonApplication rec {
8 pname = "resolve-march-native";
9 version = "unstable-2022-07-29";
11 src = fetchFromGitHub {
14 rev = "acfc87875e19ae9d4b0e5c9de1d21bc259415336";
15 hash = "sha256-Hdy8/fJXQV3p51EggyLqE2t00O0phwZjbqPhhMQKT5E=";
18 # NB: The tool uses gcc at runtime to resolve the -march=native flags
19 propagatedBuildInputs = [ gcc ];
24 description = "Tool to determine what GCC flags -march=native would resolve into";
25 homepage = "https://github.com/hartwork/resolve-march-native";
26 license = licenses.gpl2Plus;
27 maintainers = with maintainers; [ lovesegfault ];
28 platforms = platforms.linux;