blob: f007eddb4da2770608b55decdd9f9dcc750f6797 (
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
|
{
stdenv,
lib,
fetchFromGitHub,
go,
writableTmpDirAsHomeHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "AutomaticComponentToolkit";
version = "1.6.0";
src = fetchFromGitHub {
owner = "Autodesk";
repo = "AutomaticComponentToolkit";
rev = "v${finalAttrs.version}";
sha256 = "1r0sbw82cf9dbcj3vgnbd4sc1lklzvijic2z5wgkvs21azcm0yzh";
};
nativeBuildInputs = [
go
writableTmpDirAsHomeHook
];
buildPhase = ''
cd Source
go build -o act *.go
'';
installPhase = ''
install -Dm0755 act $out/bin/act
'';
meta = {
description = "Toolkit to automatically generate software components: abstract API, implementation stubs and language bindings";
mainProgram = "act";
homepage = "https://github.com/Autodesk/AutomaticComponentToolkit";
license = lib.licenses.bsd2;
maintainers = [ ];
platforms = lib.platforms.all;
};
})
|