7 python3Packages.buildPythonApplication rec {
8 pname = "resolve-march-native";
11 src = fetchFromGitHub {
14 rev = "refs/tags/${version}";
15 hash = "sha256-02d7ip5E/vkOMkkeHOx1m7FdpurXT9O6HdwrygNPHdY=";
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;