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

36 lines
897 B
Nix
Raw Normal View History

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