govers: migrate to buildGoModule

This commit is contained in:
luftmensch-luftmensch 2024-06-08 11:31:03 +02:00
parent 224c195208
commit 66ec7f718a
No known key found for this signature in database
3 changed files with 38 additions and 23 deletions

View File

@ -0,0 +1,38 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule {
pname = "govers";
version = "0-unstable-2016-06-23";
src = fetchFromGitHub {
owner = "rogpeppe";
repo = "govers";
rev = "77fd787551fc5e7ae30696e009e334d52d2d3a43";
sha256 = "sha256-lpc8wFKAB+A8mBm9q3qNzTM8ktFS1MYdIvZVFP0eiIs=";
};
vendorHash = null;
postPatch = ''
go mod init github.com/rogpeppe/govers
'';
dontRenameImports = true;
doCheck = false; # fails, silently
meta = {
description = "Tool for rewriting Go import paths";
homepage = "https://github.com/rogpeppe/govers";
license = lib.licenses.bsd3;
mainProgram = "govers";
maintainers = with lib.maintainers; [
luftmensch-luftmensch
urandom
];
};
}

View File

@ -1,21 +0,0 @@
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "govers";
version = "unstable-2016-06-23";
goPackagePath = "github.com/rogpeppe/govers";
src = fetchFromGitHub {
owner = "rogpeppe";
repo = "govers";
rev = "77fd787551fc5e7ae30696e009e334d52d2d3a43";
sha256 = "sha256-lpc8wFKAB+A8mBm9q3qNzTM8ktFS1MYdIvZVFP0eiIs=";
};
dontRenameImports = true;
doCheck = false; # fails, silently
meta.mainProgram = "govers";
}

View File

@ -27563,8 +27563,6 @@ with pkgs;
gotraceui = callPackage ../development/tools/gotraceui { };
govers = callPackage ../development/tools/govers { };
goverview = callPackage ../tools/security/goverview { };
go-tools = callPackage ../development/tools/go-tools {