Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
897 B
Nix
48 lines
897 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
openssl,
|
|
pandoc,
|
|
which,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bdsync";
|
|
version = "0.11.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rolffokkens";
|
|
repo = "bdsync";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-uvP26gdyIPC+IHxO5CYVuabfT4mnoWDOyaLTplYCW0I=";
|
|
};
|
|
|
|
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.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
mainProgram = "bdsync";
|
|
};
|
|
}
|