This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
32 lines
723 B
Nix
32 lines
723 B
Nix
{
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
buildNpmPackage {
|
|
pname = "vsc-leetcode-cli";
|
|
version = "unstable-2021-04-11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leetcode-tools";
|
|
repo = "leetcode-cli";
|
|
rev = "c5f6b8987185ae9f181e138f999825516240f44c";
|
|
hash = "sha256-N8hQqIzCUYTT5RAd0eqNynSNkGiN4omFY+8QLBemIbs=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-t8eEnyAKeDmbmduUXuxo/WbJTced5dLeJTbtjxrrxY8=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
dontCheckForBrokenSymlinks = true;
|
|
|
|
meta = {
|
|
description = "CLI tool for leetcode.com";
|
|
homepage = "https://github.com/leetcode-tools/leetcode-cli";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ cpcloud ];
|
|
mainProgram = "leetcode";
|
|
};
|
|
}
|