gomi: init at 1.1.1

This commit is contained in:
Berk Ozkutuk 2022-03-15 20:50:57 +03:00
parent 329898d260
commit 07f66fde01
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

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