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

22 lines
566 B
Nix
Raw Normal View History

{ lib, python2 }:
2017-03-08 09:00:11 -08:00
python2.pkgs.buildPythonApplication rec {
2017-03-08 09:00:11 -08:00
pname = "lit";
2018-12-29 13:18:35 -08:00
version = "0.7.1";
2017-03-08 09:00:11 -08:00
src = python2.pkgs.fetchPypi {
2017-03-08 09:00:11 -08:00
inherit pname version;
2018-12-29 13:18:35 -08:00
sha256 = "ecef2833aef7f411cb923dac109c7c9dcc7dbe7cafce0650c1e8d19c243d955f";
2017-03-08 09:00:11 -08: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 09:00:11 -08:00
license = lib.licenses.ncsa;
maintainers = with lib.maintainers; [ dtzWill ];
};
}