2021-07-09 01:13:54 +02:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, makeWrapper
|
2022-03-29 20:44:07 +02:00
|
|
|
, nixosTests
|
2021-07-09 01:13:54 +02:00
|
|
|
, openssh
|
|
|
|
}:
|
2021-02-18 03:22:07 +01:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "zrepl";
|
2023-10-07 19:09:49 +02:00
|
|
|
version = "0.6.1";
|
2021-02-18 03:22:07 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zrepl";
|
|
|
|
repo = "zrepl";
|
|
|
|
rev = "v${version}";
|
2023-10-07 19:09:49 +02:00
|
|
|
sha256 = "sha256-sFSWcJ0aBMay+ngUqnr0PKBMOfCcKHgBjff6KRpPZrg=";
|
2021-02-18 03:22:07 +01:00
|
|
|
};
|
|
|
|
|
2023-09-13 06:44:46 +02:00
|
|
|
vendorHash = "sha256-75fGejR7eiECsm1j3yIU1lAWaW9GrorrVnv8JEzkAtU=";
|
2021-02-18 03:22:07 +01:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-07-09 01:13:54 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
];
|
|
|
|
|
2022-06-26 13:40:51 +02:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/zrepl/zrepl/version.zreplVersion=${version}" ];
|
2022-06-26 13:37:16 +02:00
|
|
|
|
2021-02-18 03:22:07 +01:00
|
|
|
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
|
2021-07-09 01:13:54 +02:00
|
|
|
|
|
|
|
wrapProgram $out/bin/zrepl \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ openssh ]}
|
2021-02-18 03:22:07 +01:00
|
|
|
'';
|
|
|
|
|
2022-03-29 20:44:07 +02:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) zrepl;
|
|
|
|
};
|
|
|
|
|
2021-02-18 03:22:07 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://zrepl.github.io/";
|
|
|
|
description = "A one-stop, integrated solution for ZFS replication";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.mit;
|
2022-03-29 20:44:07 +02:00
|
|
|
maintainers = with maintainers; [ cole-h danderson mdlayher ];
|
2023-12-11 21:45:14 +01:00
|
|
|
mainProgram = "zrepl";
|
2021-02-18 03:22:07 +01:00
|
|
|
};
|
|
|
|
}
|