gomi: 1.3.2 -> 1.5.0 (#383627)

This commit is contained in:
Nikolay Korotkiy
2025-02-21 21:41:58 +04:00
committed by GitHub
+11 -8
View File
@@ -6,24 +6,27 @@
buildGoModule rec {
pname = "gomi";
version = "1.3.2";
version = "1.5.0";
src = fetchFromGitHub {
owner = "b4b4r07";
repo = pname;
rev = "v${version}";
sha256 = "sha256-mLsAT3V6rY7MGs7bq5YctSAEadQ3Ocgm/rdT1Zn6Vo0=";
repo = "gomi";
tag = "v${version}";
hash = "sha256-vUHMVyaUvMNCLUxPkR+Bk+As2A1W6ePyyuPv3SmM48Y=";
};
vendorHash = "sha256-GHxBoY09od1qrfSVSjWjSC0fDT2HQkmg5ig4iCFH/bo=";
vendorHash = "sha256-znyk+ffDUo1nOWeM5k/WE2EE9FVvLxXyM/dV8KUSioU=";
subPackages = [ "." ];
meta = with lib; {
meta = {
description = "Replacement for UNIX rm command";
homepage = "https://github.com/b4b4r07/gomi";
license = licenses.mit;
maintainers = with maintainers; [ ozkutuk ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
mimame
ozkutuk
];
mainProgram = "gomi";
};
}