aboutsummaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/code-stats-ls.nix20
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 ];
+ }
+)