lit: init at 0.5

This commit is contained in:
Will Dietz 2017-03-08 11:00:11 -06:00 committed by Frederik Rietdijk
parent 62d0534361
commit c766960150
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, python2 }:
python2.pkgs.buildPythonApplication rec {
pname = "lit";
version = "0.5.0";
name = "${pname}-${version}";
src = python2.pkgs.fetchPypi {
inherit pname version;
sha256 = "3ea4251e78ebeb2e07be2feb33243d1f8931d956efc96ccc2b0846ced212b58c";
};
# 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 ];
};
}

View file

@ -6586,6 +6586,8 @@ with pkgs;
libtool_2 = callPackage ../development/tools/misc/libtool/libtool2.nix { };
lit = callPackage ../development/tools/misc/lit { };
lsof = callPackage ../development/tools/misc/lsof { };
ltrace = callPackage ../development/tools/misc/ltrace { };