Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
33 lines
757 B
Nix
33 lines
757 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "vndr";
|
|
version = "0.1.2-unstable-2022-12-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LK4D4";
|
|
repo = "vndr";
|
|
rev = "87603e47e8ea2ddac96f508fc9e9d6fc17b198b0";
|
|
hash = "sha256-L7OemAPCv7epOVmjrDDtiGqQqzscm5zj3C6dsZP4uUc=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
postPatch = ''
|
|
go mod init github.com/LK4D4/vndr
|
|
'';
|
|
|
|
# Tests rely on the 'vndr' binary being in the PATH already.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Stupid golang vendoring tool, inspired by docker vendor script";
|
|
mainProgram = "vndr";
|
|
homepage = "https://github.com/LK4D4/vndr";
|
|
maintainers = with lib.maintainers; [ vdemeester rvolosatovs ];
|
|
license = lib.licenses.asl20;
|
|
};
|
|
}
|