blob: 017d59d0c53817bf739d18f14302249286b2c1a2 (
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
|
{
lib,
buildGoModule,
fetchFromGitHub,
testers,
cog,
stdenv,
}:
buildGoModule (finalAttrs: {
pname = "cog";
version = "0.1.23";
src = fetchFromGitHub {
owner = "grafana";
repo = "cog";
tag = "v${finalAttrs.version}";
hash = "sha256-uMlxFWMdrFF61FBinXi03QP1dGdQxaQWIyqv9eQCBP4=";
};
vendorHash = "sha256-MY+rS6lF2p8cTDB2faxBwu1VpyMy/ZvadpRdGC8/SRU=";
subPackages = [ "cmd/cli" ];
ldflags = [
"-s"
"-w"
"-X=main.version=${finalAttrs.version}"
];
env.CGO_ENABLED = 0;
passthru.tests.version = testers.testVersion { package = cog; };
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
mv $out/bin/cli $out/bin/cog
'';
meta = {
changelog = "https://github.com/grafana/cog/releases/tag/v${finalAttrs.version}";
description = "Grafana's code generation tool";
license = lib.licenses.asl20;
homepage = "https://github.com/grafana/cog";
maintainers = [
lib.maintainers.zebradil
];
mainProgram = "cog";
};
})
|