nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 24 lines 627 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "go-jira"; 5 version = "1.0.28"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "go-jira"; 10 repo = "jira"; 11 sha256 = "sha256-h/x77xGqdOxPBxdchElZU9GFgjnNo89o9gx4fYM5dME="; 12 }; 13 14 vendorSha256 = "sha256-r69aFl3GwgZ1Zr4cEy4oWlqsrjNCrqjwW9BU9+d8xDQ="; 15 16 doCheck = false; 17 18 meta = with lib; { 19 description = "Simple command line client for Atlassian's Jira service written in Go"; 20 homepage = "https://github.com/go-jira/jira"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ carlosdagos timstott ]; 23 }; 24}