biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / unconvert / default.nix
blob21c0d08ab5ac886479ab487c89a15c8f87d7779c
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "unconvert";
5   version = "unstable-2022-09-18";
7   src = fetchFromGitHub {
8     owner = "mdempsky";
9     repo = "unconvert";
10     rev = "3f84926d692329767c21c2aef3dfb7889c956832";
11     sha256 = "sha256-vcRHriFCT5b8SKjtRSg+kZDcCAKySC1cKVq+FMZb+9M=";
12   };
14   vendorHash = "sha256-p77mLvGtohmC8J+bqqkM5kqc1pMPcFx7GhXOZ4q4jeM=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "Remove unnecessary type conversions from Go source";
20     mainProgram = "unconvert";
21     homepage = "https://github.com/mdempsky/unconvert";
22     license = licenses.bsd3;
23     maintainers = with maintainers; [ kalbasit ];
24   };