3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #200214 from K900/init-lls

lls: init at 0.1.0
This commit is contained in:
figsoda 2022-11-10 18:02:47 -05:00 committed by GitHub
commit 0963ae628a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -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";
};
}

View file

@ -30079,6 +30079,8 @@ with pkgs;
inherit (ocaml-ng.ocamlPackages_4_09) ocaml;
};
lls = callPackage ../applications/networking/lls { };
lmms = libsForQt5.callPackage ../applications/audio/lmms {
lame = null;
libsoundio = null;