-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
46 lines (36 loc) · 1.21 KB
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ 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 ];
};
}