mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 15:15:36 +00:00
ef12b9cbd6
(LLVM6 -> LLVM7)
22 lines
563 B
Nix
22 lines
563 B
Nix
{ lib, python }:
|
|
|
|
python.pkgs.buildPythonApplication rec {
|
|
pname = "lit";
|
|
version = "0.7.0";
|
|
|
|
src = python.pkgs.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "13b32f1f1b3912bbf2bda91e9d1609abc92c0b4ce83276fe13a340516252e4b0";
|
|
};
|
|
|
|
# Non-standard test suite. Needs custom checkPhase.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Portable tool for executing LLVM and Clang style test suites";
|
|
homepage = http://llvm.org/docs/CommandGuide/lit.html;
|
|
license = lib.licenses.ncsa;
|
|
maintainers = with lib.maintainers; [ dtzWill ];
|
|
};
|
|
}
|