2022-09-02 04:09:30 +00:00
|
|
|
{ stdenv
|
|
|
|
, callPackage
|
|
|
|
, go
|
|
|
|
, lib
|
|
|
|
, makeWrapper
|
|
|
|
, installShellFiles
|
|
|
|
, fetchFromGitHub
|
|
|
|
, buildGoApplication
|
|
|
|
, mkGoEnv
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoApplication {
|
|
|
|
pname = "gomod2nix";
|
|
|
|
version = "dev";
|
|
|
|
|
|
|
|
modules = ./gomod2nix.toml;
|
|
|
|
|
2021-01-12 16:55:00 +00:00
|
|
|
src = lib.cleanSourceWith {
|
2022-05-30 11:09:22 +00:00
|
|
|
filter = name: type: builtins.foldl' (v: s: v && ! lib.hasSuffix s name) true [
|
|
|
|
"tests"
|
|
|
|
"builder"
|
|
|
|
"templates"
|
|
|
|
];
|
2021-01-12 16:55:00 +00:00
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
};
|
2022-09-02 04:09:30 +00:00
|
|
|
|
|
|
|
inherit go;
|
|
|
|
|
|
|
|
allowGoReference = true;
|
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit buildGoApplication mkGoEnv;
|
|
|
|
};
|
|
|
|
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform == stdenv.targetPlatform) ''
|
|
|
|
installShellCompletion --cmd gomod2nix \
|
|
|
|
--bash <($out/bin/gomod2nix completion bash) \
|
|
|
|
--fish <($out/bin/gomod2nix completion fish) \
|
|
|
|
--zsh <($out/bin/gomod2nix completion zsh)
|
|
|
|
'' + ''
|
|
|
|
wrapProgram $out/bin/gomod2nix --prefix PATH : ${lib.makeBinPath [ go ]}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Convert applications using Go modules -> Nix";
|
|
|
|
homepage = "https://github.com/nix-community/gomod2nix";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = [ lib.maintainers.adisbladis ];
|
|
|
|
};
|
|
|
|
}
|