lol

Merge pull request #54908 from andir/grv

gitAndTools.grv: use buildGoPackage instead of buildGo19Package

authored by

Will Dietz and committed by
GitHub
f2a1a4e9 853bea47

+2 -2
+2 -2
pkgs/applications/version-management/git-and-tools/grv/default.nix
··· 1 - { stdenv, buildGo19Package, fetchFromGitHub, curl, libgit2_0_27, ncurses, pkgconfig, readline }: 1 + { stdenv, buildGoPackage, fetchFromGitHub, curl, libgit2_0_27, ncurses, pkgconfig, readline }: 2 2 let 3 3 version = "0.3.1"; 4 4 in 5 - buildGo19Package { 5 + buildGoPackage { 6 6 name = "grv-${version}"; 7 7 8 8 buildInputs = [ ncurses readline curl libgit2_0_27 ];