2019-05-08 03:47:04 +02:00
|
|
|
{callPackage, stdenv, fetchFromGitHub, ...}:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-05-08 03:47:04 +02:00
|
|
|
pname = "gitstatus";
|
2020-02-02 21:38:17 +01:00
|
|
|
version = "unstable-2020-01-28";
|
2019-05-08 03:47:04 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "romkatv";
|
|
|
|
repo = "gitstatus";
|
2020-02-02 21:38:17 +01:00
|
|
|
rev = "edb99aa7b86d10ad0a1cfe25135b57c8031d82ad";
|
|
|
|
sha256 = "1nys74qswwc7hn9cv0j7syvbpnw0f15chc9pi11him4d6lsflrfd";
|
2019-05-08 03:47:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ (callPackage ./romkatv_libgit2.nix {}) ];
|
|
|
|
patchPhase = ''
|
2020-01-12 23:21:25 +01:00
|
|
|
sed -i "1i GITSTATUS_DAEMON=$out/bin/gitstatusd" gitstatus.plugin.zsh
|
2019-05-08 03:47:04 +02:00
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 gitstatusd $out/bin/gitstatusd
|
|
|
|
install -Dm444 gitstatus.plugin.zsh $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "10x faster implementation of `git status` command";
|
|
|
|
homepage = https://github.com/romkatv/gitstatus;
|
|
|
|
license = [ licenses.gpl3 ];
|
|
|
|
|
2020-02-02 21:38:17 +01:00
|
|
|
maintainers = with maintainers; [ mmlb hexa ];
|
2019-05-08 03:47:04 +02:00
|
|
|
};
|
|
|
|
}
|