Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

automaticcomponenttoolkit: init at 1.6.0

+35
+33
pkgs/development/tools/misc/automaticcomponenttoolkit/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, go }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "AutomaticComponentToolkit"; 5 + version = "1.6.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Autodesk"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1r0sbw82cf9dbcj3vgnbd4sc1lklzvijic2z5wgkvs21azcm0yzh"; 12 + }; 13 + 14 + nativeBuildInputs = [ go ]; 15 + 16 + buildPhase = '' 17 + cd Source 18 + export HOME=/tmp 19 + go build -o act *.go 20 + ''; 21 + 22 + installPhase = '' 23 + install -Dm0755 act $out/bin/act 24 + ''; 25 + 26 + meta = with lib; { 27 + description = "Toolkit to automatically generate software components: abstract API, implementation stubs and language bindings"; 28 + homepage = "https://github.com/Autodesk/AutomaticComponentToolkit"; 29 + license = licenses.bsd2; 30 + maintainers = with maintainers; [ gebner ]; 31 + platforms = platforms.all; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 11982 11982 11983 11983 astyle = callPackage ../development/tools/misc/astyle { }; 11984 11984 11985 + automaticcomponenttoolkit = callPackage ../development/tools/misc/automaticcomponenttoolkit { }; 11986 + 11985 11987 awf = callPackage ../development/tools/misc/awf { }; 11986 11988 11987 11989 aws-adfs = with python3Packages; toPythonApplication aws-adfs;