nixpkgs/pkgs/development/tools/misc/lit/default.nix

22 lines
554 B
Nix
Raw Normal View History

2017-03-08 17:00:11 +00:00
{ lib, python2 }:
python2.pkgs.buildPythonApplication rec {
pname = "lit";
2018-06-28 13:57:19 +01:00
version = "0.6.0";
2017-03-08 17:00:11 +00:00
src = python2.pkgs.fetchPypi {
inherit pname version;
2018-06-28 13:57:19 +01:00
sha256 = "1png3jgbhrw8a602gy6rnzvjcrj8w2p2kk6szdg9lz42zr090lgb";
2017-03-08 17:00:11 +00:00
};
# 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;
2017-03-08 17:00:11 +00:00
license = lib.licenses.ncsa;
maintainers = with lib.maintainers; [ dtzWill ];
};
}