Merge pull request #54908 from andir/grv

gitAndTools.grv: use buildGoPackage instead of buildGo19Package
This commit is contained in:
Will Dietz 2019-01-29 21:43:03 -06:00 committed by GitHub
commit f2a1a4e93b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,8 @@
{ stdenv, buildGo19Package, fetchFromGitHub, curl, libgit2_0_27, ncurses, pkgconfig, readline }:
{ stdenv, buildGoPackage, fetchFromGitHub, curl, libgit2_0_27, ncurses, pkgconfig, readline }:
let
version = "0.3.1";
in
buildGo19Package {
buildGoPackage {
name = "grv-${version}";
buildInputs = [ ncurses readline curl libgit2_0_27 ];