superfile: 1.1.7 -> 1.1.7.1 (#372563)

This commit is contained in:
Arne Keller 2025-01-12 19:30:14 +01:00 committed by GitHub
commit 8228f96fc9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,15 +3,19 @@
buildGoModule, buildGoModule,
fetchFromGitHub, fetchFromGitHub,
}: }:
buildGoModule rec { let
version = "1.1.7.1";
tag = "v${version}";
in
buildGoModule {
pname = "superfile"; pname = "superfile";
version = "1.1.7"; inherit version;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "yorukot"; owner = "yorukot";
repo = "superfile"; repo = "superfile";
rev = "v${version}"; inherit tag;
hash = "sha256-p5rTwGgiVdZoUWg6PYcmDlfED4/Z6+3lR4VBdWaaz9Q="; hash = "sha256-v7EfMgOsc6FSGIjYkF+44t0wl34WFmokOtzNOAOneBc=";
}; };
vendorHash = "sha256-MdOdQQZhiuOJtnj5n1uVbJV6KIs0aa1HLZpFmvxxsWY="; vendorHash = "sha256-MdOdQQZhiuOJtnj5n1uVbJV6KIs0aa1HLZpFmvxxsWY=";
@ -21,12 +25,12 @@ buildGoModule rec {
"-w" "-w"
]; ];
meta = with lib; { meta = {
description = "Pretty fancy and modern terminal file manager"; description = "Pretty fancy and modern terminal file manager";
homepage = "https://github.com/yorukot/superfile"; homepage = "https://github.com/yorukot/superfile";
changelog = "https://github.com/yorukot/superfile/blob/${src.rev}/changelog.md"; changelog = "https://github.com/yorukot/superfile/blob/${tag}/changelog.md";
license = licenses.mit; license = lib.licenses.mit;
maintainers = with maintainers; [ maintainers = with lib.maintainers; [
momeemt momeemt
redyf redyf
]; ];