evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / tr / tran / package.nix
blob767211a7e532d7a0d21fdd83bee5a70ccf9e3d9e
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "tran";
8   version = "0.1.43";
10   src = fetchFromGitHub {
11     owner = "abdfnx";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-qp4g1ZLRIIz0CZ/Zey354g0j9ePE4pGb82IivLezU7s=";
15   };
17   vendorHash = "sha256-JmRTI5ZBSFULfI+ki3hI8TPaS6IVP9D14r4DwK/nx1Y=";
19   ldflags = [
20     "-w"
21     "-s"
22     "-X main.version=v${version}"
23   ];
25   subPackages = [ "." ];
27   meta = with lib; {
28     description = "Securely transfer and send anything between computers with TUI";
29     homepage = "https://github.com/abdfnx/tran";
30     license = licenses.mit;
31     maintainers = with maintainers; [ dit7ya ];
32     mainProgram = "tran";
33   };