nixpkgs/pkgs/applications/networking/lls/default.nix
K900 b5a6fbbcff lls: init at 0.1.0
Really nice little tool made by a person in the Rust Matrix room.
2022-11-11 01:45:42 +03:00

27 lines
588 B
Nix

{
rustPlatform,
fetchFromGitHub,
lib,
}:
rustPlatform.buildRustPackage rec {
pname = "lls";
version = "0.1.0";
src = fetchFromGitHub {
owner = "jcaesar";
repo = "lls";
rev = "v${version}";
hash = "sha256-Aq0MGhzSoJCkM0Wt/r5JSOz96LyRSgSryD7+m4aFZEA=";
};
cargoSha256 = "sha256-WY4MnPNDWFEzFOehm7TqCL05Ea6n93f8VWBTOuqjBAg=";
meta = with lib; {
description = "Tool to list listening sockets";
license = licenses.mit;
maintainers = [ maintainers.k900 ];
platforms = platforms.linux;
homepage = "https://github.com/jcaesar/lls";
};
}