nixpkgs/pkgs/development/tools/wllvm/default.nix
2023-05-25 15:52:27 +03:00

20 lines
532 B
Nix

{ lib, python3Packages, fetchPypi }:
python3Packages.buildPythonApplication rec {
version = "1.3.1";
pname = "wllvm";
src = 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;
};
}