Commit ba414d53 authored by happysalada's avatar happysalada Committed by Yt
Browse files

conserve: init at 23.5.0

parent c06841ba
Loading
Loading
Loading
Loading
+2023 −0

File added.

Preview size limit exceeded, changes collapsed.

+30 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };