Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 19 lines 520 B view raw
1{ lib, python3Packages, fetchPypi }: 2 3python3Packages.buildPythonApplication rec { 4 version = "1.3.1"; 5 pname = "wllvm"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-PgV6V18FyezIZpqMQEbyv98MaVM7h7T7/Kvg3yMMwzE="; 10 }; 11 12 meta = with lib; { 13 homepage = "https://github.com/travitch/whole-program-llvm"; 14 description = "Wrapper script to build whole-program LLVM bitcode files"; 15 license = licenses.mit; 16 maintainers = with maintainers; [ mic92 ]; 17 platforms = platforms.all; 18 }; 19}