zrepl: init at 0.3.1.
Signed-off-by: David Anderson <dave@natulte.net>
This commit is contained in:
parent
5e260c3c5c
commit
2bb5ff0da2
31
pkgs/tools/backup/zrepl/default.nix
Normal file
31
pkgs/tools/backup/zrepl/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "zrepl";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zrepl";
|
||||
repo = "zrepl";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-wtUL8GGSJxn9yEdyTWKtkHODfxxLOxojNPlPLRjI9xo=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-4LBX0bD8qirFaFkV52QFU50lEW4eae6iObIa5fFT/wA=";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/lib/systemd/system
|
||||
substitute dist/systemd/zrepl.service $out/lib/systemd/system/zrepl.service \
|
||||
--replace /usr/local/bin/zrepl $out/bin/zrepl
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://zrepl.github.io/";
|
||||
description = "A one-stop, integrated solution for ZFS replication";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ cole-h danderson ];
|
||||
};
|
||||
}
|
@ -29967,6 +29967,8 @@ in
|
||||
|
||||
zfs-replicate = python3Packages.callPackage ../tools/backup/zfs-replicate { };
|
||||
|
||||
zrepl = callPackage ../tools/backup/zrepl { };
|
||||
|
||||
runwayml = callPackage ../applications/graphics/runwayml {};
|
||||
|
||||
uhubctl = callPackage ../tools/misc/uhubctl {};
|
||||
|
Loading…
Reference in New Issue
Block a user