mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-04 17:49:08 +00:00
8525f7f0e5
This was an attempt to get maximal sharing with Nixpkgs but in hindsight it's better to just have some code duplication.
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ stdenv
|
|
, callPackage
|
|
, go
|
|
, lib
|
|
, makeWrapper
|
|
, installShellFiles
|
|
, fetchFromGitHub
|
|
, buildGoApplication
|
|
, mkGoEnv
|
|
}:
|
|
|
|
buildGoApplication {
|
|
pname = "gomod2nix";
|
|
version = "dev";
|
|
|
|
modules = ./gomod2nix.toml;
|
|
|
|
src = lib.cleanSourceWith {
|
|
filter = name: type: builtins.foldl' (v: s: v && ! lib.hasSuffix s name) true [
|
|
"tests"
|
|
"builder"
|
|
"templates"
|
|
];
|
|
src = lib.cleanSource ./.;
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|