conserve: init at 23.5.0
This commit is contained in:
parent
c06841ba0f
commit
ba414d53e9
2023
pkgs/tools/backup/conserve/Cargo.lock
generated
Normal file
2023
pkgs/tools/backup/conserve/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
30
pkgs/tools/backup/conserve/default.nix
Normal file
30
pkgs/tools/backup/conserve/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user