diff options
| author | Fuwn <[email protected]> | 2024-09-19 23:13:31 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-19 23:13:31 -0700 |
| commit | 084e67c46ae414c53b9386aeefe594e11928b3ef (patch) | |
| tree | 4fd423080a0c8005124183a5626afef16d48d2af /pkgs | |
| parent | chore(flake): unify input inputs (diff) | |
| download | tsutsumi-084e67c46ae414c53b9386aeefe594e11928b3ef.tar.xz tsutsumi-084e67c46ae414c53b9386aeefe594e11928b3ef.zip | |
feat(pkgs): add code-stats-ls
Diffstat (limited to 'pkgs')
| -rw-r--r-- | pkgs/code-stats-ls.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/code-stats-ls.nix b/pkgs/code-stats-ls.nix new file mode 100644 index 0000000..9b480b3 --- /dev/null +++ b/pkgs/code-stats-ls.nix @@ -0,0 +1,20 @@ +{ + lib, + pkg-config, + openssl, + pkgs, +}: +pkgs.buildRustPackage ( + with lib; + { + pname = "code-stats-ls"; + version = "9cae08e121eece2f379d4996156c66971bab8133"; + githubOwner = "maxdeviant"; + githubHash = "sha256-/w+oqO4eHh4MEbxpSYEfoGbdWguFxg8laob3/oZDFO0="; + cargoHash = "sha256-oyhespwCTE3/ivljj/mFgAtC4TQvswBGKP2RiD5B/wY="; + license = licenses.mit; + maintainers = [ maintainers.Fuwn ]; + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ openssl.dev ]; + } +) |