Merge pull request #298835 from TheMaxMur/feature/gat

gat: init at 0.17.0

authored by Pol Dellaiera and committed by GitHub 8ef6d577 8898f511

+34
+34
pkgs/by-name/ga/gat/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "gat"; 8 + version = "0.17.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "koki-develop"; 12 + repo = "gat"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-aQ7EEB+yJ78vT/LskYsnUya6rIID1AvdaUWzr1oWV3k="; 15 + }; 16 + 17 + vendorHash = "sha256-q6g3pXWKIWanGPxOxsKUEuP8Hcc31GCm64RbOAhQTfE="; 18 + 19 + CGO_ENABLED = 0; 20 + 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + "-X github.com/koki-develop/gat/cmd.version=v${version}" 25 + ]; 26 + 27 + meta = with lib; { 28 + description = "Cat alternative written in Go"; 29 + license = licenses.mit; 30 + homepage = "https://github.com/koki-develop/gat"; 31 + maintainers = with maintainers; [ themaxmur ]; 32 + mainProgram = "gat"; 33 + }; 34 + }