From b5a6fbbcffc1deb23bd9f0b8faa27d470a1be6a3 Mon Sep 17 00:00:00 2001 From: K900 Date: Tue, 8 Nov 2022 18:17:18 +0300 Subject: lls: init at 0.1.0 Really nice little tool made by a person in the Rust Matrix room. --- pkgs/applications/networking/lls/default.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/applications/networking/lls/default.nix (limited to 'pkgs/applications/networking/lls') diff --git a/pkgs/applications/networking/lls/default.nix b/pkgs/applications/networking/lls/default.nix new file mode 100644 index 0000000000000..9935d7ba9efdb --- /dev/null +++ b/pkgs/applications/networking/lls/default.nix @@ -0,0 +1,26 @@ +{ + 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"; + }; +} -- cgit 1.4.1