2019-03-17 03:27:17 +00:00
|
|
|
{ stdenv, fetchFromGitLab, rustPlatform, cmake, pkgconfig, openssl
|
2019-09-08 22:58:15 +01:00
|
|
|
, darwin, installShellFiles
|
2019-03-20 03:51:24 +00:00
|
|
|
|
2019-05-04 22:36:40 +01:00
|
|
|
, x11Support ? stdenv.isLinux || stdenv.hostPlatform.isBSD
|
2019-03-26 04:09:42 +00:00
|
|
|
, xclip ? null, xsel ? null
|
|
|
|
, preferXsel ? false # if true and xsel is non-null, use it instead of xclip
|
2019-03-17 03:27:17 +00:00
|
|
|
}:
|
|
|
|
|
2019-05-04 22:36:40 +01:00
|
|
|
let
|
|
|
|
usesX11 = stdenv.isLinux || stdenv.hostPlatform.isBSD;
|
|
|
|
in
|
|
|
|
|
|
|
|
assert (x11Support && usesX11) -> xclip != null || xsel != null;
|
2019-03-20 03:51:24 +00:00
|
|
|
|
2019-03-17 03:27:17 +00:00
|
|
|
with rustPlatform;
|
|
|
|
|
|
|
|
buildRustPackage rec {
|
2019-04-20 06:50:51 +01:00
|
|
|
pname = "ffsend";
|
2020-04-01 00:55:23 +01:00
|
|
|
version = "0.2.59";
|
2019-03-17 03:27:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "timvisee";
|
|
|
|
repo = "ffsend";
|
|
|
|
rev = "v${version}";
|
2020-04-01 00:55:23 +01:00
|
|
|
sha256 = "14a7mb1a1s74hi124v4jscc72m09zq2bd8xrhq5agz9z27plqm2c";
|
2019-03-17 03:27:17 +00:00
|
|
|
};
|
|
|
|
|
2020-04-01 00:55:23 +01:00
|
|
|
cargoSha256 = "1945s3ajpy55fzh5wbl7fchqck0fh69shl18lxni9hvg04smq39i";
|
2019-03-17 03:27:17 +00:00
|
|
|
|
2019-09-08 22:58:15 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig installShellFiles ];
|
2019-03-17 03:27:17 +00:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ CoreFoundation CoreServices Security AppKit ])
|
|
|
|
;
|
|
|
|
|
2019-05-04 22:36:40 +01:00
|
|
|
preBuild = stdenv.lib.optionalString (x11Support && usesX11) (
|
2019-03-26 04:09:42 +00:00
|
|
|
if preferXsel && xsel != null then ''
|
|
|
|
export XSEL_PATH="${xsel}/bin/xsel"
|
|
|
|
'' else ''
|
|
|
|
export XCLIP_PATH="${xclip}/bin/xclip"
|
|
|
|
''
|
|
|
|
);
|
2019-03-20 03:51:24 +00:00
|
|
|
|
2019-03-17 03:27:17 +00:00
|
|
|
postInstall = ''
|
2019-09-08 22:58:15 +01:00
|
|
|
installShellCompletion contrib/completions/ffsend.{bash,fish} --zsh contrib/completions/_ffsend
|
2019-03-17 03:27:17 +00:00
|
|
|
'';
|
2019-03-20 03:51:24 +00:00
|
|
|
# There's also .elv and .ps1 completion files but I don't know where to install those
|
2019-03-17 03:27:17 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Easily and securely share files from the command line. A fully featured Firefox Send client";
|
|
|
|
longDescription = ''
|
|
|
|
Easily and securely share files and directories from the command line through a safe, private
|
|
|
|
and encrypted link using a single simple command. Files are shared using the Send service and
|
|
|
|
may be up to 2GB. Others are able to download these files with this tool, or through their
|
|
|
|
web browser.
|
|
|
|
'';
|
|
|
|
homepage = https://gitlab.com/timvisee/ffsend;
|
|
|
|
license = licenses.gpl3;
|
2019-12-06 06:55:16 +00:00
|
|
|
maintainers = with maintainers; [ lilyball equirosa ];
|
2019-05-04 22:36:40 +01:00
|
|
|
platforms = platforms.unix;
|
2019-03-17 03:27:17 +00:00
|
|
|
};
|
|
|
|
}
|