blob: 8de2cd9545bbfbc03bca0219f8558d938ebc494f (
about) (
plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
git,
versionCheckHook,
replaceVars,
nix-update-script,
}:
buildGoModule rec {
pname = "garble";
version = "0.14.1";
src = fetchFromGitHub {
owner = "burrowers";
repo = "garble";
tag = "v${version}";
hash = "sha256-zS/K2kOpWhJmr0NuWSjEjNXV8ILt81yLIQWSPDuMwt8=";
};
__darwinAllowLocalNetworking = true;
ldflags = [
"-buildid=00000000000000000000" # length=20
];
patches = [
(replaceVars ./0001-Add-version-info.patch {
inherit version;
})
];
checkFlags = [
"-skip"
"TestScript/gogarble"
];
vendorHash = "sha256-xxG1aQrALVuJ7oVn+Z+sH655eFQ7rcYFmymGCUZD1uU=";
# Used for some of the tests.
nativeCheckInputs = [
git
versionCheckHook
];
preCheck = ''
export HOME=$(mktemp -d)
export WORK=$(mktemp -d)
'';
# Several tests fail with
# FAIL: testdata/script/goenv.txtar:27: "$WORK/.temp 'quotes' and spaces" matches "garble|importcfg|cache\\.gob|\\.go"
doCheck = !stdenv.hostPlatform.isDarwin;
nativeInstallCheckInputs = [
versionCheckHook
];
versionCheckProgramArg = "version";
doInstallCheck = false;
passthru.updateScript = nix-update-script { };
meta = {
description = "Obfuscate Go code by wrapping the Go toolchain";
homepage = "https://github.com/burrowers/garble/";
maintainers = with lib.maintainers; [
davhau
bot-wxt1221
];
license = lib.licenses.bsd3;
mainProgram = "garble";
};
}
|