chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / or / ory / package.nix
blob01c6424513af56eb49556686231622dbc6647a0a
1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }:
3 buildGoModule rec {
4   pname = "ory";
5   version = "0.3.4";
7   src = fetchFromGitHub {
8     owner = "ory";
9     repo = "cli";
10     rev = "refs/tags/v${version}";
11     hash = "sha256-q7+Fpttgx62GbKxCCiEDlX//e/pNO24e7KhhBeGRDH0=";
12   };
14   nativeBuildInputs = [
15     installShellFiles
16   ];
18   subPackages = [ "." ];
20   CGO_ENABLED = 1;
22   tags = [
23     "sqlite"
24   ];
26   vendorHash = "sha256-B0y1JVjJmC5eitn7yIcDpl+9+xaBDJBMdvm+7N/ZxTk=";
28   postInstall = ''
29     mv $out/bin/cli $out/bin/ory
30     installShellCompletion --cmd ory \
31       --bash <($out/bin/ory completion bash) \
32       --fish <($out/bin/ory completion fish) \
33       --zsh <($out/bin/ory completion zsh)
34   '';
36   meta = with lib; {
37     mainProgram = "ory";
38     description = "Ory CLI";
39     homepage = "https://www.ory.sh/cli";
40     license = licenses.asl20;
41     maintainers = with maintainers; [ luleyleo nicolas-goudry ];
42   };