nixpkgs/pkgs/tools/backup/bdsync/default.nix

41 lines
845 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2019-08-13 21:52:40 +00:00
, openssl
, pandoc
, which
}:
2017-12-31 13:20:30 +00:00
stdenv.mkDerivation rec {
pname = "bdsync";
2020-10-22 21:57:05 +00:00
version = "0.11.2";
2017-12-31 13:20:30 +00:00
src = fetchFromGitHub {
2020-10-22 21:57:05 +00:00
owner = "rolffokkens";
2017-12-31 13:20:30 +00:00
repo = pname;
rev = "v${version}";
2020-10-22 21:57:05 +00:00
sha256 = "0kx422cp1bxr62i1mi7dzrpwmys1kdp865rcymdp4knb5rr5864k";
2017-12-31 13:20:30 +00:00
};
2019-08-13 21:52:40 +00:00
nativeBuildInputs = [ pandoc which ];
buildInputs = [ openssl ];
2017-12-31 13:20:30 +00:00
postPatch = ''
patchShebangs ./tests.sh
patchShebangs ./tests/
'';
doCheck = true;
installPhase = ''
2019-08-13 21:52:40 +00:00
install -Dm755 bdsync -t $out/bin/
install -Dm644 bdsync.1 -t $out/share/man/man1/
2017-12-31 13:20:30 +00:00
'';
meta = with lib; {
2017-12-31 13:20:30 +00:00
description = "Fast block device synchronizing tool";
homepage = "https://github.com/TargetHolding/bdsync";
2017-12-31 13:20:30 +00:00
license = licenses.gpl2;
2018-03-08 04:11:52 +00:00
platforms = platforms.linux;
2017-12-31 13:20:30 +00:00
maintainers = with maintainers; [ jluttine ];
};
}