about summary refs log tree commit diff
path: root/pkgs/by-name/gp/gptscript/package.nix
blob: 0cd7af6cb2217c89028e7a32ed5be2272060986a (plain) (blame)
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
{
  lib,
  buildGo122Module,
  fetchFromGitHub,
}:
buildGo122Module rec {
  pname = "gptscript";
  version = "0.1.1";

  src = fetchFromGitHub {
    owner = "gptscript-ai";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-zG75L10WvfkmjwW3ifBHaTkHNXqXvNO0PaXejCc2tls=";
  };

  vendorHash = "sha256-LV9uLLwdtLJTIxaBB1Jew92S0QjQsceyLEfSrDeDnR4=";

  ldflags = [
    "-s"
    "-w"
    "-X main.Version=${version}"
    "-X main.Commit=${version}"
  ];

  # Requires network access
  doCheck = false;

  meta = with lib; {
    homepage = "https://gptscript.ai";
    changelog = "https://github.com/gptscript-ai/gptscript/releases/tag/v{version}";
    description = "Natural Language Programming";
    license = with licenses; [asl20];
    maintainers = with maintainers; [jamiemagee];
    mainProgram = "gptscript";
  };
}