git-sync: unstable-2015-10-24 -> unstable-2021-07-14 (#130306)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Ivan Malison
Sandro
and committed by
GitHub
0c98c6bb 2efc69eb

+6 -6
+6 -6
pkgs/applications/version-management/git-and-tools/git-sync/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, coreutils, gnugrep, gnused, makeWrapper, git 2 - }: 1 + { lib, stdenv, fetchFromGitHub, coreutils, git, gnugrep, gnused, makeWrapper, inotify-tools }: 3 2 4 3 stdenv.mkDerivation rec { 5 4 pname = "git-sync"; 6 - version = "20151024"; 5 + version = "unstable-2021-07-14"; 7 6 8 7 src = fetchFromGitHub { 9 8 owner = "simonthum"; 10 9 repo = "git-sync"; 11 - rev = "eb9adaf2b5fd65aac1e83d6544b9076aae6af5b7"; 12 - sha256 = "01if8y93wa0mwbkzkzx2v1vqh47zlz4k1dysl6yh5rmppd1psknz"; 10 + rev = "7d3d34bf3ee2483fba00948f5b97f964b849a590"; 11 + sha256 = "sha256-PuYREW5NBkYF1tlcLTbOI8570nvHn5ifN8OIInfNNxI="; 13 12 }; 14 13 15 14 nativeBuildInputs = [ makeWrapper ]; ··· 18 17 19 18 installPhase = '' 20 19 mkdir -p $out/bin 21 - cp -a git-sync $out/bin/git-sync 20 + cp -a git-* $out/bin/ 22 21 ''; 23 22 24 23 wrapperPath = with lib; makeBinPath [ 24 + inotify-tools 25 25 coreutils 26 26 git 27 27 gnugrep