fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, python3Packages }:
2
3python3Packages.buildPythonApplication rec {
4 version = "1.2.8";
5 pname = "wllvm";
6 name = "${pname}-${version}";
7
8 src = python3Packages.fetchPypi {
9 inherit pname version;
10 sha256 = "1d88fzg4ba4r3hwrinnv6agiyj3xxdy4yryb8wz2ml51nc6bi591";
11 };
12
13 meta = with lib; {
14 homepage = "https://github.com/travitch/whole-program-llvm";
15 description = "A wrapper script to build whole-program LLVM bitcode files";
16 license = licenses.mit;
17 maintainers = with maintainers; [ mic92 dtzWill ];
18 platforms = platforms.all;
19 };
20}