aboutsummaryrefslogtreecommitdiff
path: root/pkgs/code-stats-ls.nix
blob: 9b480b3aa2428386a2e589546f35f83bb8bd4cf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 ];
  }
)