1{ 2 buildNpmPackage, 3 fetchFromGitHub, 4 lib, 5}: 6 7buildNpmPackage { 8 pname = "vsc-leetcode-cli"; 9 version = "unstable-2021-04-11"; 10 11 src = fetchFromGitHub { 12 owner = "leetcode-tools"; 13 repo = "leetcode-cli"; 14 rev = "c5f6b8987185ae9f181e138f999825516240f44c"; 15 hash = "sha256-N8hQqIzCUYTT5RAd0eqNynSNkGiN4omFY+8QLBemIbs="; 16 }; 17 18 npmDepsHash = "sha256-t8eEnyAKeDmbmduUXuxo/WbJTced5dLeJTbtjxrrxY8="; 19 20 dontNpmBuild = true; 21 22 meta = with lib; { 23 description = "CLI tool for leetcode.com"; 24 homepage = "https://github.com/leetcode-tools/leetcode-cli"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ cpcloud ]; 27 mainProgram = "leetcode"; 28 }; 29}