mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
31 lines
647 B
Nix
31 lines
647 B
Nix
{
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lls";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jcaesar";
|
|
repo = "lls";
|
|
rev = "v${version}";
|
|
hash = "sha256-f2f09ptMBZfBY1jjOEc8ElAoEj4LKXXSdXLlYLf8Z3M=";
|
|
};
|
|
|
|
cargoHash = "sha256-LS0azaKBFWW86R4XO5BkCHMEG2UwgkVQIwLELxewiu0=";
|
|
|
|
meta = with lib; {
|
|
description = "Tool to list listening sockets";
|
|
license = licenses.mit;
|
|
maintainers = [
|
|
maintainers.k900
|
|
maintainers.jcaesar
|
|
];
|
|
platforms = platforms.linux;
|
|
homepage = "https://github.com/jcaesar/lls";
|
|
mainProgram = "lls";
|
|
};
|
|
}
|