1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00
nixpkgs/pkgs/development/tools/misc/lit/default.nix
Will Dietz ef12b9cbd6 lit: 0.6.0 -> 0.7.0
(LLVM6 -> LLVM7)
2018-11-29 08:46:07 -06:00

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 ];
};
}