gh-skyline: init at 0.1.3 (#372227)

authored by Sandro and committed by GitHub 81fd4c64 9571c986

+35
+35
pkgs/by-name/gh/gh-skyline/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + 8 + buildGoModule rec { 9 + pname = "gh-skyline"; 10 + version = "0.1.3"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "github"; 14 + repo = "gh-skyline"; 15 + tag = "v${version}"; 16 + hash = "sha256-j8RAuujlze589+W+jvXJq1b7YX3uf+sd8qTvyZeKYUc="; 17 + }; 18 + 19 + vendorHash = "sha256-rfv9KTTWs68pqSdgWo9dIn+PTe+77ZMOEhG0P37QwKo="; 20 + 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + ]; 25 + 26 + passthru.updateScript = nix-update-script { }; 27 + 28 + meta = { 29 + description = "Generate a 3D model of your GitHub contribution history"; 30 + homepage = "https://github.com/github/gh-skyline"; 31 + license = lib.licenses.mit; 32 + maintainers = with lib.maintainers; [ perchun ]; 33 + mainProgram = "gh-skyline"; 34 + }; 35 + }