Skip to content

Commit

Permalink
logo-ls: init at 1.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium committed May 1, 2023
1 parent 3306b06 commit 4fe2ddf
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/tools/misc/logo-ls/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{ lib
, fetchFromGitHub
, buildGoModule
, installShellFiles
}:

buildGoModule rec {
pname = "logo-ls";
version = "1.3.7";

src = fetchFromGitHub {
owner = "Yash-Handa";
repo = "logo-ls";
rev = "v${version}";
hash = "sha256-jxUowWhvtFJ5EyYVzmNmgNQ2/MOR1VU3TY10t2j615c=";
};

vendorHash = "sha256-p0rM8dZwwwARh2crtOkq1HtJKnxsvLKg1Bhm/5mtESM=";

nativeBuildInputs = [
installShellFiles
];

postInstall = ''
installManPage logo-ls.1.gz
'';

meta = with lib; {
description = "Modern ls command with vscode like File Icon and Git Integrations";
homepage = "https://github.com/Yash-Handa/logo-ls";
changelog = "https://github.com/Yash-Handa/logo-ls/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ natsukium ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9166,6 +9166,8 @@ with pkgs;

lockfileProgs = callPackage ../tools/misc/lockfile-progs { };

logo-ls = callPackage ../tools/misc/logo-ls { };

logstash7 = callPackage ../tools/misc/logstash/7.x.nix {
# https://www.elastic.co/support/matrix#logstash-and-jvm
jre = jdk11_headless;
Expand Down

0 comments on commit 4fe2ddf

Please sign in to comment.