nixpkgs/pkgs/applications/networking/lls/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
647 B
Nix
Raw Normal View History

{
rustPlatform,
fetchFromGitHub,
lib,
}:
rustPlatform.buildRustPackage rec {
pname = "lls";
2024-10-11 12:24:19 +00:00
version = "0.3.0";
src = fetchFromGitHub {
owner = "jcaesar";
repo = "lls";
rev = "v${version}";
2024-10-11 12:24:19 +00:00
hash = "sha256-f2f09ptMBZfBY1jjOEc8ElAoEj4LKXXSdXLlYLf8Z3M=";
};
2024-10-11 12:24:19 +00:00
cargoHash = "sha256-LS0azaKBFWW86R4XO5BkCHMEG2UwgkVQIwLELxewiu0=";
meta = with lib; {
description = "Tool to list listening sockets";
license = licenses.mit;
2024-10-12 00:28:35 +00:00
maintainers = [
maintainers.k900
maintainers.jcaesar
];
platforms = platforms.linux;
homepage = "https://github.com/jcaesar/lls";
2023-11-27 01:17:53 +00:00
mainProgram = "lls";
};
}