From 4ec54a16d6acfbf1be9473253bb0a74c1aef5b3e Mon Sep 17 00:00:00 2001 From: RedEtherbloom Date: Wed, 4 Dec 2024 15:08:07 +0100 Subject: [PATCH] =?UTF-8?q?git-sync:=200-unstable-2024-02-15=20=E2=86=92?= =?UTF-8?q?=200-unstable-2024-11-30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/gi/git-sync/package.nix | 33 +++++++++++++++++++--------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/pkgs/by-name/gi/git-sync/package.nix b/pkgs/by-name/gi/git-sync/package.nix index 1534cfb81c1e..c08f3f6857b8 100644 --- a/pkgs/by-name/gi/git-sync/package.nix +++ b/pkgs/by-name/gi/git-sync/package.nix @@ -1,14 +1,24 @@ -{ lib, stdenv, fetchFromGitHub, coreutils, git, gnugrep, gnused, makeWrapper, inotify-tools }: +{ + lib, + stdenv, + fetchFromGitHub, + coreutils, + git, + gnugrep, + gnused, + makeWrapper, + inotify-tools, +}: stdenv.mkDerivation rec { pname = "git-sync"; - version = "0-unstable-2024-02-15"; + version = "0-unstable-2024-11-30"; src = fetchFromGitHub { owner = "simonthum"; repo = "git-sync"; - rev = "493b0155fb974b477b6ea623d6e41e13ddad8500"; - hash = "sha256-hsq+kpB+akjbFKBeHMsP8ibrtygEG2Yf2QW9vFFIano="; + rev = "7242291edf543ecc1bb9de8f47086bb69a5cb9f7"; + hash = "sha256-t1NVgp+ELmTMK0N1fFFJCoKQd8mSYSMAIDG9+kNs3Ok="; }; nativeBuildInputs = [ makeWrapper ]; @@ -21,12 +31,15 @@ stdenv.mkDerivation rec { cp -a contrib/git-* $out/bin/ ''; - wrapperPath = lib.makeBinPath ([ - coreutils - git - gnugrep - gnused - ] ++ lib.optionals stdenv.hostPlatform.isLinux [ inotify-tools ]); + wrapperPath = lib.makeBinPath ( + [ + coreutils + git + gnugrep + gnused + ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ inotify-tools ] + ); postFixup = '' wrap_path="${wrapperPath}":$out/bin