mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
gomi: init at 1.1.1
This commit is contained in:
parent
329898d260
commit
07f66fde01
27
pkgs/tools/misc/gomi/default.nix
Normal file
27
pkgs/tools/misc/gomi/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user