Unverified Commit 239638ed authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge master into staging-nixos

parents 22d7c482 65a6a3bc
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -22864,6 +22864,12 @@
    githubId = 496447;
    name = "Robert Hensing";
  };
  robertjakub = {
    email = "rjakub@pm.me";
    github = "robertjakub";
    githubId = 7160579;
    name = "Robert Jakub";
  };
  robertodr = {
    email = "roberto.diremigio@gmail.com";
    github = "robertodr";
@@ -24388,6 +24394,17 @@
    githubId = 6292;
    name = "Andrey Petrov";
  };
  sheeeng = {
    email = "leonard.sheng.sheng.lee@gmail.com";
    github = "sheeeng";
    githubId = 305414;
    keys = [
      { fingerprint = "444E 47CF 8B37 E775 83B2  4F15 0CDB E529 04CA 3543"; }
      { fingerprint = "B4C7 C8B9 F60F 1C8D B9F4  7E63 F104 C3F6 5943 8426"; }
    ];
    matrix = "@sheeeng:matrix.org";
    name = "Leonard Sheng Sheng Lee";
  };
  sheepforce = {
    email = "phillip.seeber@googlemail.com";
    github = "sheepforce";
+3 −3
Original line number Diff line number Diff line
@@ -571,13 +571,13 @@
    "vendorHash": "sha256-xIagZvWtlNpz5SQfxbA7r9ojAeS3CW2pwV337ObKOwU="
  },
  "hashicorp_google": {
    "hash": "sha256-VJ9RGR7wmX8CkNvntxlbhGuIyrCALMVH+E7zRRbD1bY=",
    "hash": "sha256-SeShEZVFMn/f/ATUY08Jl1wwXBJFmyTpRh7U46ftM60=",
    "homepage": "https://registry.terraform.io/providers/hashicorp/google",
    "owner": "hashicorp",
    "repo": "terraform-provider-google",
    "rev": "v7.17.0",
    "rev": "v7.19.0",
    "spdx": "MPL-2.0",
    "vendorHash": "sha256-u85rqTYpYFeTLGElOVojpsqUMZsopjpmsKwijsyLlz8="
    "vendorHash": "sha256-lhTdDrTwTbRuWngQ+NGuh+x5Z5HZfVTtNi+mZqIENbg="
  },
  "hashicorp_google-beta": {
    "hash": "sha256-NRTnx5nqdCtjz0mGZjuA96jEzW1rKR+M0AY2//TAYk4=",
+4 −4
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  gccStdenv,
  fetchurl,
  libbsd,
  libressl,
  pkg-config,
}:

stdenv.mkDerivation rec {
gccStdenv.mkDerivation (finalAttrs: {
  pname = "acme-client";
  version = "1.3.3";

  src = fetchurl {
    url = "https://data.wolfsden.cz/sources/acme-client-${version}.tar.gz";
    url = "https://data.wolfsden.cz/sources/acme-client-${finalAttrs.version}.tar.gz";
    hash = "sha256-HJOk2vlDD7ADrLdf/eLEp+teu9XN0KrghEe6y4FIDoI=";
  };

@@ -37,4 +37,4 @@ stdenv.mkDerivation rec {
    maintainers = with lib.maintainers; [ pmahoney ];
    mainProgram = "acme-client";
  };
}
})
+58 −0
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
  installShellFiles,
  git,
  stdenv,
}:

buildGoModule (finalAttrs: {
  pname = "entire";
  version = "0.4.4";

  src = fetchFromGitHub {
    owner = "entireio";
    repo = "cli";
    tag = "v${finalAttrs.version}";
    hash = "sha256-6/TsSmJ0z72Ta5ZihO06uV4Mik+fFpm8eCa7d5zlq24=";
  };

  vendorHash = "sha256-rh2VhdwNT5XJYCVjj8tnoY7cacEhc/kcxi0NHYFPYO8=";

  postPatch = ''
    substituteInPlace go.mod --replace-fail "go 1.25.6" "go 1.25.5"
  '';

  subPackages = [ "cmd/entire" ];

  ldflags = [
    "-s"
    "-w"
  ];

  nativeBuildInputs = [ installShellFiles ];

  nativeCheckInputs = [ git ];

  postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
    installShellCompletion --cmd entire \
      --bash <($out/bin/entire completion bash) \
      --fish <($out/bin/entire completion fish) \
      --zsh <($out/bin/entire completion zsh)
  '';

  meta = {
    description = "CLI tool that captures AI agent sessions alongside git commits";
    longDescription = ''
      Entire hooks into your git workflow to capture AI agent sessions on every
      push. Sessions are indexed alongside commits, creating a searchable record
      of how code was written in your repo.
    '';
    homepage = "https://github.com/entireio/cli";
    changelog = "https://github.com/entireio/cli/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sheeeng ];
    mainProgram = "entire";
  };
})
+2 −2
Original line number Diff line number Diff line
@@ -36,13 +36,13 @@ let
in
stdenv.mkDerivation rec {
  pname = "freenet";
  version = "01505";
  version = "01506";

  src = fetchFromGitHub {
    owner = "hyphanet";
    repo = "fred";
    tag = "build${version}";
    hash = "sha256-0ffYQ+8hZqFLjMk6A2rapKZsz/lZNpbG6K0wDqBSdY8=";
    hash = "sha256-MmI/e/Sh4WeSSw2//xpmJtF5/oC9+eauXnTMLuojb2A=";
  };

  nativeBuildInputs = [
Loading