{ lib , fetchgit , rustPlatform , pkg-config , openssl , fuse3 , libuuid , acl , libxcrypt , git , installShellFiles , sphinx , stdenv , fetchpatch , testers , proxmox-backup-client }: let pname = "proxmox-backup-client"; version = "3.1.2"; proxmox-backup_src = fetchgit { url = "git://git.proxmox.com/git/proxmox-backup.git"; rev = "v${version}"; name = "proxmox-backup"; hash = "sha256-G4wadZelQHlveVhuOpu0FjLvfegoimoxlw3Fe8DhsQA="; }; # Same revision as used in # https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=proxmox-backup-client proxmox_src = fetchgit { url = "git://git.proxmox.com/git/proxmox.git"; rev = "50b79198f83659e77b810fe0eedaa79b140744db"; name = "proxmox"; hash = "sha256-ffkOXGqe0xjvvhouzemcQ8qNdmJx70x10ny2uhYAYaI="; }; proxmox-fuse_src = fetchgit { url = "git://git.proxmox.com/git/proxmox-fuse.git"; rev = "93099f76b6bbbc8a0bbaca9b459a1ce4dc5e0a79"; name = "proxmox-fuse"; hash = "sha256-3l0lAZVFQC0MYaqZvB+S+ihb1fTkEgs5i9q463+cbvQ="; }; proxmox-pxar_src = fetchgit { url = "git://git.proxmox.com/git/pxar.git"; rev = "fab647085426dc39c25c137575a3b8fc575c4b78"; name = "pxar"; hash = "sha256-tedQDQUFSGUZCChGcRRJsh7lIozfispLCLeX1OuUc4k="; }; proxmox-pathpatterns_src = fetchgit { url = "git://git.proxmox.com/git/pathpatterns.git"; rev = "5f625aacbd6f81d97a1c6f5476fb38769d069f26"; # 0.3.0 name = "pathpatterns"; hash = "sha256-717XSlvQdvP0Q516fEx04rsrLCk3QI8frTD5NMmkSr4="; }; in rustPlatform.buildRustPackage { inherit pname version; srcs = [ proxmox-backup_src proxmox_src proxmox-fuse_src proxmox-pxar_src proxmox-pathpatterns_src ]; sourceRoot = proxmox-backup_src.name; # These patches are essentially un-upstreamable, due to being "workarounds" related to the # project structure. cargoPatches = [ # A lot of Rust crates `proxmox-backup-client` depends on are only available through git (or # Debian packages). This patch redirects all these dependencies to a local, relative path, which # works in combination with the other three repos being checked out. (fetchpatch { name = "0001-re-route-dependencies-not-available-on-crates.io-to-.patch"; url = "https://aur.archlinux.org/cgit/aur.git/plain/0001-re-route-dependencies-not-available-on-crates.io-to-.patch?h=proxmox-backup-client&id=33ef762d3b3a8a0300117efada8d957f6d0cfa07"; hash = "sha256-hBct1NVFum7WG0sgdE7DdvjfnC6KPlLG9r4syxgYKWA="; }) # This patch prevents the generation of the man-pages for other components inside the repo, # which would require them too be built too. Thus avoid wasting resources and just skip them. (fetchpatch { name = "0002-docs-drop-all-but-client-man-pages.patch"; url = "https://aur.archlinux.org/cgit/aur.git/plain/0002-docs-drop-all-but-client-man-pages.patch?h=proxmox-backup-client&id=33ef762d3b3a8a0300117efada8d957f6d0cfa07"; hash = "sha256-DvWm18udvOpcma0V3JY06Lhn+h0BDPhNqrNOyrgpvWk="; }) # `make docs` assumes that the binaries are located under `target/{debug,release}`, but due # to how `buildRustPackage` works, they get put under `target/$RUSTC_TARGET/{debug,release}`. # This patch simply fixes that up. ./0001-docs-Add-target-path-fixup-variable.patch ]; postPatch = '' cp ${./Cargo.lock} Cargo.lock rm .cargo/config ''; postBuild = '' make -C docs \ DEB_VERSION=${version} DEB_VERSION_UPSTREAM=${version} \ RUSTC_TARGET=${stdenv.hostPlatform.config} \ BUILD_MODE=release \ proxmox-backup-client.1 pxar.1 ''; postInstall = '' installManPage docs/output/man/proxmox-backup-client.1 installShellCompletion --cmd proxmox-backup-client \ --bash debian/proxmox-backup-client.bc \ --zsh zsh-completions/_proxmox-backup-client installManPage docs/output/man/pxar.1 installShellCompletion --cmd pxar \ --bash debian/pxar.bc \ --zsh zsh-completions/_pxar ''; cargoLock = { lockFileContents = builtins.readFile ./Cargo.lock; }; cargoBuildFlags = [ "--package=proxmox-backup-client" "--bin=proxmox-backup-client" "--bin=dump-catalog-shell-cli" "--package=pxar-bin" "--bin=pxar" ]; doCheck = false; nativeBuildInputs = [ git pkg-config rustPlatform.bindgenHook installShellFiles sphinx ]; buildInputs = [ openssl fuse3 libuuid acl libxcrypt ]; passthru.tests.version = testers.testVersion { package = proxmox-backup-client; command = "${pname} version"; }; meta = with lib; { description = "The command line client for Proxmox Backup Server"; homepage = "https://pbs.proxmox.com/docs/backup-client.html"; changelog = "https://git.proxmox.com/?p=proxmox-backup.git;a=blob;f=debian/changelog;hb=refs/tags/v${version}"; license = licenses.agpl3Only; maintainers = with maintainers; [ cofob christoph-heiss ]; platforms = platforms.linux; mainProgram = "proxmox-backup-client"; }; }