gitstatus: unstable-2020-04-21 -> 1.1.3

This commit is contained in:
Martin Weinelt
2020-06-01 01:29:55 +02:00
parent 72158c231a
commit 43e6a42da8
2 changed files with 8 additions and 8 deletions
@@ -1,14 +1,14 @@
{ callPackage, stdenv, fetchFromGitHub, ...}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "gitstatus";
version = "unstable-2020-04-21";
version = "1.1.3";
src = fetchFromGitHub {
owner = "romkatv";
repo = "gitstatus";
rev = "3494f25b0b3b2eac241cf669d1fea2b49ea42fb3";
sha256 = "0b4g14dkkgih6zps2w1krl9xf44ysj02617zj1k51z127v2lpm1f";
rev = "v${version}";
sha256 = "16s09d2kpw0v0kyr2ada99qmsi0pqnsiis22mzq69hay0hdg8p1n";
};
buildInputs = [ (callPackage ./romkatv_libgit2.nix {}) ];
@@ -24,7 +24,6 @@ stdenv.mkDerivation {
description = "10x faster implementation of `git status` command";
homepage = "https://github.com/romkatv/gitstatus";
license = [ licenses.gpl3 ];
maintainers = with maintainers; [ mmlb hexa ];
};
}