biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / usync / default.nix
blob7a5abda593029f4afa86559960c5b3e7a8e34a4c
1 { lib, stdenv, fetchFromGitHub, scsh, rsync, unison }:
3 stdenv.mkDerivation rec {
4   pname = "usync";
5   version = "0.0.3";
7   src = fetchFromGitHub {
8     owner = "ebzzry";
9     repo = "usync";
10     rev = "99f11b0c196a81843f55ca3456abcb85149b6d51";
11     sha256 = "16i1q8f0jmfd43rb8d70l2b383vr5ib4kh7iq3yd345q7xjz9c2j";
12   };
14   installPhase = ''
15     install -m 555 -Dt $out/bin $pname
16   '';
18   postFixup = ''
19     substituteInPlace $out/bin/$pname --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
20     substituteInPlace $out/bin/$pname --replace "(rsync " "(${rsync}/bin/rsync "
21     substituteInPlace $out/bin/$pname --replace "(unison " "(${unison}/bin/unison "
22   '';
24   meta = with lib; {
25     homepage = "https://github.com/ebzzry/usync";
26     description = "Simple site-to-site synchronization tool";
27     license = licenses.mit;
28     maintainers = [ maintainers.ebzzry ];
29     platforms = platforms.unix;
30     mainProgram = "usync";
31   };
33   dontBuild = true;