mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
41 lines
874 B
Nix
41 lines
874 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.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
mainProgram = "bdsync";
|
|
};
|
|
}
|