quick-lint-js: init at 2.1.0
This commit is contained in:
parent
a31699dce9
commit
fe1bcec602
2 changed files with 26 additions and 0 deletions
24
pkgs/development/tools/quick-lint-js/default.nix
Normal file
24
pkgs/development/tools/quick-lint-js/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ cmake, fetchFromGitHub, lib, ninja, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "quick-lint-js";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "quick-lint";
|
||||
repo = "quick-lint-js";
|
||||
rev = version;
|
||||
sha256 = "sha256-F21eli4HdLw3RComvocwBrcGfruIjO23E6+7a4+6vbs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ninja ];
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Find bugs in Javascript programs";
|
||||
homepage = "https://quick-lint-js.com";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ ratsclub ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -22943,6 +22943,8 @@ with pkgs;
|
|||
|
||||
qemu_test = lowPrio (qemu.override { hostCpuOnly = true; nixosTestRunner = true; });
|
||||
|
||||
quick-lint-js = callPackage ../development/tools/quick-lint-js { };
|
||||
|
||||
linux-firmware = callPackage ../os-specific/linux/firmware/linux-firmware { };
|
||||
|
||||
qmk-udev-rules = callPackage ../os-specific/linux/qmk-udev-rules { };
|
||||
|
|
Loading…
Reference in a new issue