2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3Packages }:
|
2017-05-15 06:53:00 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2022-03-13 15:21:33 +00:00
|
|
|
version = "1.3.1";
|
2017-05-15 06:53:00 +00:00
|
|
|
pname = "wllvm";
|
|
|
|
|
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2022-03-13 15:21:33 +00:00
|
|
|
sha256 = "sha256-PgV6V18FyezIZpqMQEbyv98MaVM7h7T7/Kvg3yMMwzE=";
|
2017-05-15 06:53:00 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-31 06:56:11 +00:00
|
|
|
homepage = "https://github.com/travitch/whole-program-llvm";
|
2017-05-15 06:53:00 +00:00
|
|
|
description = "A wrapper script to build whole-program LLVM bitcode files";
|
|
|
|
license = licenses.mit;
|
2018-05-18 17:55:04 +00:00
|
|
|
maintainers = with maintainers; [ mic92 dtzWill ];
|
2017-05-15 06:53:00 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|