about summary refs log tree commit diff
path: root/pkgs/applications/networking/lls
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2022-11-08 18:17:18 +0300
committerK900 <me@0upti.me>2022-11-11 01:45:42 +0300
commitb5a6fbbcffc1deb23bd9f0b8faa27d470a1be6a3 (patch)
treec4d67fc2e92a0784040c14af942d0320ce87d53e /pkgs/applications/networking/lls
parent19bf0264bb4d732fe0a4c9ce664b3deb562aeb2e (diff)
lls: init at 0.1.0
Really nice little tool made by a person in the Rust Matrix room.
Diffstat (limited to 'pkgs/applications/networking/lls')
-rw-r--r--pkgs/applications/networking/lls/default.nix26
1 files changed, 26 insertions, 0 deletions
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";
+  };
+}