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 sha256 = "sha256-PgV6V18FyezIZpqMQEbyv98MaVM7h7T7/Kvg3yMMwzE=";
10 };
11
12 meta = with lib; {
13 homepage = "https://github.com/travitch/whole-program-llvm";
14 description = "A wrapper script to build whole-program LLVM bitcode files";
15 license = licenses.mit;
16 maintainers = with maintainers; [ mic92 dtzWill ];
17 platforms = platforms.all;
18 };
19}