Merge pull request #258850 from linuxissuper/update/termscp

termscp: 0.11.2 -> 0.12.2
This commit is contained in:
Fabian Affolter 2023-10-08 09:51:54 +02:00 committed by GitHub
commit 16d864f8c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,20 +9,21 @@
, Cocoa , Cocoa
, Foundation , Foundation
, Security , Security
, samba
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "termscp"; pname = "termscp";
version = "0.11.2"; version = "0.12.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "veeso"; owner = "veeso";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-bQvoTy48eYK369Ei6B8l6F5/pfQGYiHdz3KsQV7Bi9Y="; hash = "sha256-2EoCBz98RKynrYdcxiHySy7e07XU+loRLPaRCoVxySY=";
}; };
cargoHash = "sha256-/nadstDHzLOrimL+xK7/ldOozz7ZS1nRQmkIhGHK8p8="; cargoHash = "sha256-tXTVb5ogrBrK9aMC8LZLLZazMx8pO4Xa+hociUS9mRI=";
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
@ -31,6 +32,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ buildInputs = [
dbus dbus
openssl openssl
samba
] ++ lib.optionals stdenv.isDarwin [ ] ++ lib.optionals stdenv.isDarwin [
AppKit AppKit
Cocoa Cocoa
@ -49,7 +51,7 @@ rustPlatform.buildRustPackage rec {
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {
description = "Terminal tool for file transfer and explorer"; description = "A feature rich terminal UI file transfer and explorer with support for SCP/SFTP/FTP/S3/SMB";
homepage = "https://github.com/veeso/termscp"; homepage = "https://github.com/veeso/termscp";
changelog = "https://github.com/veeso/termscp/blob/v${version}/CHANGELOG.md"; changelog = "https://github.com/veeso/termscp/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ]; license = with licenses; [ mit ];