mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-23 03:45:50 -06:00
add rclone for now
This commit is contained in:
parent
7988b4dbf7
commit
b99d530aff
3 changed files with 111 additions and 7 deletions
|
@ -2,10 +2,12 @@
|
|||
config,
|
||||
pkgs,
|
||||
mkOizysModule,
|
||||
flake,
|
||||
...
|
||||
}:
|
||||
mkOizysModule config "backups" {
|
||||
environment.systemPackages = with pkgs; [ rclone ];
|
||||
# environment.systemPackages = with pkgs; [ rclone ];
|
||||
environment.systemPackages = [ (flake.pkgs "self").rclone ];
|
||||
|
||||
services.restic.backups.gdrive = {
|
||||
# BUG: if .conda/environments.txt doesn't exist then this won't work
|
||||
|
|
|
@ -6,19 +6,20 @@
|
|||
let
|
||||
inherit (lib) flakeFromSystem;
|
||||
flake = flakeFromSystem pkgs.system;
|
||||
|
||||
in
|
||||
{
|
||||
distrobox = pkgs.callPackage ./distrobox { };
|
||||
llm-with-plugins = pkgs.callPackage ./llm/llm-with-plugins { };
|
||||
|
||||
# added for access to https://github.com/rclone/rclone/issues/8351
|
||||
# can remove when rclone v1.70 hits nixpkgs
|
||||
rclone = pkgs.callPackage ./rclone {};
|
||||
|
||||
nimlangserver = pkgs.callPackage ./nim/nimlangserver { };
|
||||
procs = pkgs.callPackage ./nim/procs { };
|
||||
nimble = pkgs.callPackage ./nim/nimble { };
|
||||
|
||||
distrobox = pkgs.callPackage ./distrobox { };
|
||||
|
||||
llm-with-plugins = pkgs.callPackage ./llm/llm-with-plugins { };
|
||||
|
||||
lix = (flake.pkg "lix-module");
|
||||
|
||||
roc = (flake.pkgs "roc").cli;
|
||||
roc-lang-server = (flake.pkgs "roc").lang-server;
|
||||
}
|
||||
|
|
101
pkgs/rclone/default.nix
Normal file
101
pkgs/rclone/default.nix
Normal file
|
@ -0,0 +1,101 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
buildPackages,
|
||||
installShellFiles,
|
||||
makeWrapper,
|
||||
enableCmount ? true,
|
||||
fuse,
|
||||
fuse3,
|
||||
macfuse-stubs,
|
||||
librclone,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "rclone";
|
||||
version = "1.69.0-unstable";
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
"man"
|
||||
];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rclone";
|
||||
repo = "rclone";
|
||||
rev = "dc9c87279b989d4c9c8baec9adb259aba8b1da08";
|
||||
hash = "sha256-mH9Bi77cpRY6+LuozJ0efx71rJjp2tR3DBHKLtfMO30=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-99keix8Phs0IZb+kJcpR72hk0Uicy7h9/aoyZoG3X5w=";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
installShellFiles
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = lib.optional enableCmount (
|
||||
if stdenv.hostPlatform.isDarwin then macfuse-stubs else fuse
|
||||
);
|
||||
|
||||
tags = lib.optionals enableCmount [ "cmount" ];
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/rclone/rclone/fs.Version=${version}"
|
||||
];
|
||||
|
||||
postConfigure = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
|
||||
substituteInPlace vendor/github.com/winfsp/cgofuse/fuse/host_cgo.go \
|
||||
--replace-fail '"libfuse.so.2"' '"${lib.getLib fuse}/lib/libfuse.so.2"'
|
||||
'';
|
||||
|
||||
postInstall =
|
||||
let
|
||||
rcloneBin =
|
||||
if stdenv.buildPlatform.canExecute stdenv.hostPlatform then
|
||||
"$out"
|
||||
else
|
||||
lib.getBin buildPackages.rclone;
|
||||
in
|
||||
''
|
||||
installManPage rclone.1
|
||||
for shell in bash zsh fish; do
|
||||
${rcloneBin}/bin/rclone genautocomplete $shell rclone.$shell
|
||||
installShellCompletion rclone.$shell
|
||||
done
|
||||
|
||||
# filesystem helpers
|
||||
ln -s $out/bin/rclone $out/bin/rclonefs
|
||||
ln -s $out/bin/rclone $out/bin/mount.rclone
|
||||
''
|
||||
+
|
||||
lib.optionalString (enableCmount && !stdenv.hostPlatform.isDarwin)
|
||||
# use --suffix here to ensure we don't shadow /run/wrappers/bin/fusermount3,
|
||||
# as the setuid wrapper is required as non-root on NixOS.
|
||||
''
|
||||
wrapProgram $out/bin/rclone \
|
||||
--suffix PATH : "${lib.makeBinPath [ fuse3 ]}"
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
inherit librclone;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command line program to sync files and directories to and from major cloud storage";
|
||||
homepage = "https://rclone.org";
|
||||
changelog = "https://github.com/rclone/rclone/blob/v${version}/docs/content/changelog.md";
|
||||
license = licenses.mit;
|
||||
mainProgram = "rclone";
|
||||
maintainers = with maintainers; [
|
||||
SuperSandro2000
|
||||
tomfitzhenry
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue