nixpkgs-suyu/pkgs/applications/version-management/git-and-tools/grv/default.nix

36 lines
897 B
Nix
Raw Normal View History

2019-06-17 09:47:10 +02:00
{ stdenv, buildGoPackage, fetchFromGitHub, curl, libgit2, ncurses, pkgconfig, readline }:
2018-01-31 22:37:47 +01:00
let
2020-03-18 11:47:13 +01:00
version = "0.3.2";
2018-01-31 22:37:47 +01:00
in
buildGoPackage {
2019-08-13 23:52:01 +02:00
pname = "grv";
inherit version;
2018-01-31 22:37:47 +01:00
2019-06-17 09:47:10 +02:00
buildInputs = [ ncurses readline curl libgit2 ];
2018-01-31 22:37:47 +01:00
nativeBuildInputs = [ pkgconfig ];
goPackagePath = "github.com/rgburke/grv";
src = fetchFromGitHub {
owner = "rgburke";
repo = "grv";
rev = "v${version}";
2020-03-18 11:47:13 +01:00
sha256 = "0bpjsk35rlp56z8149z890adnhmxyh743vsls3q86j4682b83kyf";
2018-02-07 22:15:50 +01:00
fetchSubmodules = true;
2018-01-31 22:37:47 +01:00
};
postPatch = ''
rm util/update_latest_release.go
'';
buildFlagsArray = [ "-ldflags=" "-X main.version=${version}" ];
2018-01-31 22:37:47 +01:00
meta = with stdenv.lib; {
2018-10-04 23:50:15 +02:00
description = "GRV is a terminal interface for viewing Git repositories";
2018-01-31 22:37:47 +01:00
homepage = https://github.com/rgburke/grv;
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ andir ];
};
}