7 python3Packages.buildPythonApplication rec {
8 pname = "resolve-march-native";
11 src = fetchFromGitHub {
14 rev = "refs/tags/${version}";
15 hash = "sha256-fkiEWZvg/h8Gn0TL3Ov8aq2cAG5VncUTrVcUTRNOx+Y=";
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 mainProgram = "resolve-march-native";
26 homepage = "https://github.com/hartwork/resolve-march-native";
27 license = licenses.gpl2Plus;
28 maintainers = with maintainers; [ lovesegfault ];
29 platforms = platforms.unix;