mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
eb11feaa0b
Changes the default fetcher in the Rust Platform to be the newer `fetchCargoTarball`, and changes every application using the current default to instead opt out. This commit does not change any hashes or cause any rebuilds. Once integrated, we will start deleting the opt-outs and recomputing hashes. See #79975 for details.
65 lines
2.1 KiB
Nix
65 lines
2.1 KiB
Nix
{ stdenv, fetchFromGitLab, rustPlatform, cmake, pkgconfig, openssl
|
|
, darwin, installShellFiles
|
|
|
|
, x11Support ? stdenv.isLinux || stdenv.hostPlatform.isBSD
|
|
, xclip ? null, xsel ? null
|
|
, preferXsel ? false # if true and xsel is non-null, use it instead of xclip
|
|
}:
|
|
|
|
let
|
|
usesX11 = stdenv.isLinux || stdenv.hostPlatform.isBSD;
|
|
in
|
|
|
|
assert (x11Support && usesX11) -> xclip != null || xsel != null;
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
|
pname = "ffsend";
|
|
version = "0.2.58";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "timvisee";
|
|
repo = "ffsend";
|
|
rev = "v${version}";
|
|
sha256 = "0yqigqh5vldzmp7wc1mxi5a4bxzm81xycx5h0ghak74vbjibps49";
|
|
};
|
|
|
|
# Delete this on next update; see #79975 for details
|
|
legacyCargoFetcher = true;
|
|
|
|
cargoSha256 = "1wwdnm6a5g4gpd1f89qii8v4f6mcfc1bif1v6mdlcbrpwax5skh4";
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig installShellFiles ];
|
|
buildInputs = [ openssl ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ CoreFoundation CoreServices Security AppKit ])
|
|
;
|
|
|
|
preBuild = stdenv.lib.optionalString (x11Support && usesX11) (
|
|
if preferXsel && xsel != null then ''
|
|
export XSEL_PATH="${xsel}/bin/xsel"
|
|
'' else ''
|
|
export XCLIP_PATH="${xclip}/bin/xclip"
|
|
''
|
|
);
|
|
|
|
postInstall = ''
|
|
installShellCompletion contrib/completions/ffsend.{bash,fish} --zsh contrib/completions/_ffsend
|
|
'';
|
|
# There's also .elv and .ps1 completion files but I don't know where to install those
|
|
|
|
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;
|
|
maintainers = with maintainers; [ lilyball equirosa ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|