nixpkgs/pkgs/tools/backup/bdsync/default.nix
2023-11-23 21:04:16 +01:00

42 lines
870 B
Nix

{ lib, stdenv, fetchFromGitHub
, openssl
, pandoc
, which
}:
stdenv.mkDerivation rec {
pname = "bdsync";
version = "0.11.3";
src = fetchFromGitHub {
owner = "rolffokkens";
repo = pname;
rev = "v${version}";
sha256 = "sha256-58yoF6s0WjH+1mTY7X5OX53YgcnDmGxoCR8Kvl6lP+A=";
};
nativeBuildInputs = [ pandoc which ];
buildInputs = [ openssl ];
postPatch = ''
patchShebangs ./tests.sh
patchShebangs ./tests/
'';
doCheck = true;
installPhase = ''
install -Dm755 bdsync -t $out/bin/
install -Dm644 bdsync.1 -t $out/share/man/man1/
'';
meta = with lib; {
description = "Fast block device synchronizing tool";
homepage = "https://github.com/rolffokkens/bdsync";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ jluttine ];
mainProgram = "bdsync";
};
}