Skip to content

Commit

Permalink
lit: init at 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzWill authored and FRidh committed Mar 15, 2017
1 parent 62d0534 commit c766960
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/tools/misc/lit/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit c766960

Please sign in to comment.