depot/third_party/nixpkgs/pkgs/development/tools/wllvm/default.nix
Default email 8a45d4525b Project import generated by Copybara.
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
2022-03-30 11:31:56 +02:00

19 lines
537 B
Nix

{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
version = "1.3.1";
pname = "wllvm";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-PgV6V18FyezIZpqMQEbyv98MaVM7h7T7/Kvg3yMMwzE=";
};
meta = with lib; {
homepage = "https://github.com/travitch/whole-program-llvm";
description = "A wrapper script to build whole-program LLVM bitcode files";
license = licenses.mit;
maintainers = with maintainers; [ mic92 dtzWill ];
platforms = platforms.all;
};
}