forked from colonelpanic/dotfiles
[NixOS] Add git-sync
This commit is contained in:
parent
cd15797a01
commit
d15e7b2967
@ -35,6 +35,40 @@ let
|
|||||||
libappindicator-gtk3
|
libappindicator-gtk3
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
git-sync = with pkgs; stdenv.mkDerivation rec {
|
||||||
|
name = "git-sync-${version}";
|
||||||
|
version = "20151024";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "simonthum";
|
||||||
|
repo = "git-sync";
|
||||||
|
rev = "eb9adaf2b5fd65aac1e83d6544b9076aae6af5b7";
|
||||||
|
sha256 = "01if8y93wa0mwbkzkzx2v1vqh47zlz4k1dysl6yh5rmppd1psknz";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp -a git-sync $out/bin/git-sync
|
||||||
|
'';
|
||||||
|
|
||||||
|
wrapperPath = with stdenv.lib; makeBinPath [
|
||||||
|
coreutils
|
||||||
|
git
|
||||||
|
gnugrep
|
||||||
|
gnused
|
||||||
|
];
|
||||||
|
|
||||||
|
fixupPhase = ''
|
||||||
|
patchShebangs $out/bin
|
||||||
|
|
||||||
|
wrapProgram $out/bin/git-sync \
|
||||||
|
--prefix PATH : "${wrapperPath}"
|
||||||
|
'';
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
@ -131,6 +165,7 @@ in
|
|||||||
binutils
|
binutils
|
||||||
gcc
|
gcc
|
||||||
gitFull
|
gitFull
|
||||||
|
git-sync
|
||||||
gnumake
|
gnumake
|
||||||
gnupg
|
gnupg
|
||||||
htop
|
htop
|
||||||
|
Loading…
Reference in New Issue
Block a user