nixpkgs-suyu/pkgs/development/tools/wllvm/default.nix

21 lines
570 B
Nix
Raw Normal View History

2017-05-15 08:53:00 +02:00
{ stdenv, python3Packages }:
python3Packages.buildPythonApplication rec {
2018-03-14 20:28:38 +01:00
version = "1.1.5";
2017-05-15 08:53:00 +02:00
pname = "wllvm";
name = "${pname}-${version}";
src = python3Packages.fetchPypi {
inherit pname version;
2018-03-14 20:28:38 +01:00
sha256 = "02lnilhqz7mq0w6mp574rmjxiszp1wyla16jqr89r0z9vjg2j9rv";
2017-05-15 08:53:00 +02:00
};
meta = with stdenv.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 ];
platforms = platforms.all;
};
}