Merge pull request #164293 from ozkutuk/add-gomi

gomi: init at 1.1.1
This commit is contained in:
Jonas Heinrich 2022-09-05 11:55:59 +02:00 committed by GitHub
commit faf9c2b0a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gomi";
version = "1.1.1";
src = fetchFromGitHub {
owner = "b4b4r07";
repo = pname;
rev = "v${version}";
sha256 = "sha256-zLHP6PI2YeW1Fn6OPuMaiAPHOdudfKO4YP3XTh9HXNc=";
};
vendorSha256 = "sha256-7Qy7Akp/yP+XbxVQhQuUd1FZ504A3a2BLbHI3eglIqk=";
subPackages = [ "." ];
meta = with lib; {
description = "Replacement for UNIX rm command";
homepage = "https://github.com/b4b4r07/gomi";
license = licenses.mit;
maintainers = with maintainers; [ ozkutuk ];
};
}

View File

@ -703,6 +703,8 @@ with pkgs;
global-platform-pro = callPackage ../development/tools/global-platform-pro { };
gomi = callPackage ../tools/misc/gomi { };
graph-easy = callPackage ../tools/graphics/graph-easy { };
graphw00f = callPackage ../tools/security/graphw00f { };