mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
38ad43dd89
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS /tmp/tmp.Laok6v3TeR /home/ryantm/.cache/nixpkgs /home/ryantm/.cache/nixpkgs - ran `/nix/store/0qpj62pcv8gvlyimr7bmmhnq2y4kq59c-git-recent-1.0.4/bin/git-recent -h` got 0 exit code - ran `/nix/store/0qpj62pcv8gvlyimr7bmmhnq2y4kq59c-git-recent-1.0.4/bin/git-recent --help` got 0 exit code - ran `/nix/store/0qpj62pcv8gvlyimr7bmmhnq2y4kq59c-git-recent-1.0.4/bin/git-recent help` got 0 exit code - ran `/nix/store/0qpj62pcv8gvlyimr7bmmhnq2y4kq59c-git-recent-1.0.4/bin/.git-recent-wrapped -h` got 0 exit code - ran `/nix/store/0qpj62pcv8gvlyimr7bmmhnq2y4kq59c-git-recent-1.0.4/bin/.git-recent-wrapped --help` got 0 exit code - ran `/nix/store/0qpj62pcv8gvlyimr7bmmhnq2y4kq59c-git-recent-1.0.4/bin/.git-recent-wrapped help` got 0 exit code - found 1.0.4 with grep in /nix/store/0qpj62pcv8gvlyimr7bmmhnq2y4kq59c-git-recent-1.0.4 - directory tree listing: https://gist.github.com/a5c51e3598313240f56c2e95a8ddf85e
42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
{stdenv, git, less, fetchFromGitHub, makeWrapper
|
|
# utillinuxMinimal is included because we need the column command
|
|
, utillinux ? null
|
|
}:
|
|
|
|
assert stdenv.isLinux -> utillinux != null;
|
|
|
|
let
|
|
binpath = stdenv.lib.makeBinPath
|
|
([ git less ]
|
|
++ stdenv.lib.optional (utillinux != null) utillinux);
|
|
in stdenv.mkDerivation rec {
|
|
name = "git-recent-${version}";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paulirish";
|
|
repo = "git-recent";
|
|
rev = "v${version}";
|
|
sha256 = "0dbnm5b2v04fy0jgzphm3xvz9scx0n4p10fw8wjd0cy56308h79k";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
buildPhase = null;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp git-recent $out/bin
|
|
wrapProgram $out/bin/git-recent \
|
|
--prefix PATH : "${binpath}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/paulirish/git-recent;
|
|
description = "See your latest local git branches, formatted real fancy";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.jlesquembre ];
|
|
};
|
|
}
|