Merge pull request #196252 from dit7ya/tran

tran: init at 0.1.43
This commit is contained in:
Fabian Affolter 2022-11-13 11:27:17 +01:00 committed by GitHub
commit 16ea5845f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tran";
version = "0.1.43";
src = fetchFromGitHub {
owner = "abdfnx";
repo = pname;
rev = "v${version}";
sha256 = "sha256-qp4g1ZLRIIz0CZ/Zey354g0j9ePE4pGb82IivLezU7s=";
};
vendorSha256 = "sha256-JmRTI5ZBSFULfI+ki3hI8TPaS6IVP9D14r4DwK/nx1Y=";
ldflags = [
"-w"
"-s"
"-X main.version=v${version}"
];
subPackages = [ "." ];
meta = with lib; {
description = "Securely transfer and send anything between computers with TUI";
homepage = "https://github.com/abdfnx/tran";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
};
}

View file

@ -12120,6 +12120,8 @@ with pkgs;
trackma-qt = trackma.override { withQT = true; };
tran = callPackage ../tools/networking/tran { };
tpmmanager = libsForQt5.callPackage ../applications/misc/tpmmanager { };
tpm-quote-tools = callPackage ../tools/security/tpm-quote-tools { };