tran: init at 0.1.43

This commit is contained in:
Mostly Void 2022-10-15 22:40:39 +05:30
parent b881869205
commit bdd3a9a26d
No known key found for this signature in database
GPG key ID: E2B7342D0CAA82C2
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

@ -11821,6 +11821,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 { };