about summary refs log tree commit diff
path: root/pkgs/by-name/bs/bsync/package.nix
blob: 0a49bea9eefae6d642c4b3cb1aeb3e73a0c4ff99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ lib
, fetchFromGitHub
, stdenv
, makeWrapper
, python3
, openssh
, rsync
, findutils
, which
}:

stdenv.mkDerivation {
  pname = "bsync";
  version = "unstable-2023-12-21";

  src = fetchFromGitHub {
    owner  = "dooblem";
    repo   = "bsync";
    rev    = "25f77730750720ad68b0ab2773e79d9ca98c3647";
    hash   = "sha256-k25MjLis0/dp1TTS4aFeJZq/c0T01LmNcWtC+dw/kKY=";
  };

  installPhase = ''
    runHook preInstall
    install -Dm555 bsync -t $out/bin
    runHook postInstall
  '';

nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python3 ];

fixupPhase = ''
  runHook preFixup

  patchShebangs $out/bin/bsync
  wrapProgram $out/bin/bsync \
    --prefix PATH ":" ${lib.makeLibraryPath [ openssh rsync findutils which ]}

  runHook postFixup
'';

  meta = with lib; {
    homepage = "https://github.com/dooblem/bsync";
    description = "Bidirectional Synchronization using Rsync";
    license = licenses.gpl3Only;
    maintainers = with maintainers;  [ dietmarw ];
    platforms = platforms.unix;
    mainProgram = "bsync";
  };
}