1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 23:55:23 +00:00
nixpkgs/pkgs/development/tools/misc/lit/default.nix

23 lines
586 B
Nix
Raw Normal View History

2017-03-08 17:00:11 +00:00
{ lib, python2 }:
python2.pkgs.buildPythonApplication rec {
pname = "lit";
2018-01-06 20:59:56 +00:00
version = "0.5.1";
2017-03-08 17:00:11 +00:00
name = "${pname}-${version}";
src = python2.pkgs.fetchPypi {
inherit pname version;
2018-01-06 20:59:56 +00:00
sha256 = "0z651m3vkbk85y41larnsjxrszkbi58x9gzml3lb6ga7qwcrsg97";
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 ];
};
}