lit: init at 0.5
This commit is contained in:
parent
62d0534361
commit
c766960150
2 changed files with 24 additions and 0 deletions
22
pkgs/development/tools/misc/lit/default.nix
Normal file
22
pkgs/development/tools/misc/lit/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue