conserve: init at 23.5.0

This commit is contained in:
happysalada 2023-07-16 13:23:08 +08:00 committed by Yt
parent c06841ba0f
commit ba414d53e9
3 changed files with 2055 additions and 0 deletions

2023
pkgs/tools/backup/conserve/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,30 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "conserve";
version = "23.5.0";
src = fetchFromGitHub {
owner = "sourcefrog";
repo = "conserve";
rev = "v${version}";
hash = "sha256-OzSTueaw2kWc2e45zckXS2O4bfykREOcz8/PpUIK09w=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"nutmeg-0.1.3-pre" = "sha256-WcbQf8DZ9ryY+TWcVObdHj005GvfeMG+wesr6FiCUCE=";
};
};
meta = with lib; {
description = "Robust portable backup tool in Rust";
homepage = "https://github.com/sourcefrog/conserve";
license = licenses.gpl2Only;
maintainers = with maintainers; [ happysalada ];
};
}

View File

@ -495,6 +495,8 @@ with pkgs;
compdb = callPackage ../tools/misc/compdb { };
conserve = callPackage ../tools/backup/conserve { };
conserver = callPackage ../tools/misc/conserver { };
containerlab = callPackage ../tools/networking/containerlab { };