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

Merge staging-next into staging

parents 9c7c6cc7 f8f5067f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2476,8 +2476,8 @@ let
        mktplcRef = {
          publisher = "jeff-hykin";
          name = "better-nix-syntax";
          version = "2.2.3";
          hash = "sha256-KhmkCMBWagi0JjZvupgaU7LA6hsGRE6SiHqdJlXyyX8=";
          version = "2.3.0";
          hash = "sha256-Zb4RFs2qkSMeQKkNXk4brrZBDiRK4e08taOOgdRWQEk=";
        };
        meta = {
          description = "Visual Studio Code extension providing Nix Syntax highlighting";
+5 −5
Original line number Diff line number Diff line
@@ -741,11 +741,11 @@
    "vendorHash": null
  },
  "integrations_github": {
    "hash": "sha256-FVDx8KH7foy1rZigDVEWMEalQ9nJnLkRjkJsFi0aEuM=",
    "hash": "sha256-EjCL6RcTw+2uhfwgyiFRfsXYkkDHZqlSSzEcb4CRvIo=",
    "homepage": "https://registry.terraform.io/providers/integrations/github",
    "owner": "integrations",
    "repo": "terraform-provider-github",
    "rev": "v6.7.1",
    "rev": "v6.7.3",
    "spdx": "MIT",
    "vendorHash": null
  },
@@ -1282,13 +1282,13 @@
    "vendorHash": "sha256-rWiafaFE1RolO9JUN1WoW4EWJjR7kpfeVEOTLf21j50="
  },
  "tailscale_tailscale": {
    "hash": "sha256-hkqlstHLHBERVenwyVUew+b26liFQpRh99vIMI0TCBY=",
    "hash": "sha256-EiaQKO4Pg+89Mc8nwSarKhHBtr+yEKWEyZ4i0LeOfu4=",
    "homepage": "https://registry.terraform.io/providers/tailscale/tailscale",
    "owner": "tailscale",
    "repo": "terraform-provider-tailscale",
    "rev": "v0.23.0",
    "rev": "v0.24.0",
    "spdx": "MIT",
    "vendorHash": "sha256-9VyRFLpwF/+5iidLdzilztAdv/YaujUKoRwIyLgiV6o="
    "vendorHash": "sha256-GhXplzkv0ouWSo4fNs7C0h87sFguhre6ez4d0Pgd/5w="
  },
  "telmate_proxmox": {
    "hash": "sha256-1aKKlOIk1mH4yx66eD635d1IaUWXIiBGHEt4A2F2mGM=",
+7 −1
Original line number Diff line number Diff line
@@ -22,6 +22,12 @@ self: super: {
  fetchrepoproject = args: super.fetchrepoproject ({ preferLocalBuild = false; } // args);
  fetchs3 = args: super.fetchs3 ({ preferLocalBuild = false; } // args);
  fetchsvn = args: super.fetchsvn ({ preferLocalBuild = false; } // args);
  fetchurl = args: super.fetchurl ({ preferLocalBuild = false; } // args);
  fetchurl =
    fpArgs:
    super.fetchurl (
      super.lib.extends (finalAttrs: args: { preferLocalBuild = args.preferLocalBuild or false; }) (
        super.lib.toFunction fpArgs
      )
    );
  mkNugetSource = args: super.mkNugetSource ({ preferLocalBuild = false; } // args);
}
+4 −4
Original line number Diff line number Diff line
@@ -15,21 +15,21 @@

buildGoModule (finalAttrs: {
  pname = "anubis";
  version = "1.22.0";
  version = "1.23.0";

  src = fetchFromGitHub {
    owner = "TecharoHQ";
    repo = "anubis";
    tag = "v${finalAttrs.version}";
    hash = "sha256-LOYBl9r00AJljGvlacd506cLeMr8Ndh817/ZIw46Uu0=";
    hash = "sha256-uuYPtkhHMP2WafV7iFMwuh8Bm39Mf7ww6H/io54dwCM=";
  };

  vendorHash = "sha256-/iTAbwYSHTz9SrJ0vrAXsA+3yS0jUreJDF52gju9CgU=";
  vendorHash = "sha256-0W3nBc4vu3hnQTDB561zmx/2rOYo7D+vo8jvx10cBUc=";

  npmDeps = fetchNpmDeps {
    name = "anubis-npm-deps";
    inherit (finalAttrs) src;
    hash = "sha256-s+OxVf6Iysobfuo0nAh5qF157opD2sR5D+7awAx6GTs=";
    hash = "sha256-KEQYF+LTSw0g3+wF4e8u31ERYsNVHlOjTMdDH6Q2/hI=";
  };

  nativeBuildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -40,14 +40,14 @@ let
in
python3Packages.buildPythonApplication rec {
  pname = "cameractrls";
  version = "0.6.7";
  version = "0.6.8";
  pyproject = false;

  src = fetchFromGitHub {
    owner = "soyersoyer";
    repo = "cameractrls";
    rev = "v${version}";
    hash = "sha256-MM+Py8tHtqJWIGmGg3RaIhJa0E1zM3hXOnTOqXPuejw=";
    hash = "sha256-kc5/HbtDZHJHR2loo8Zs555GRW6ynSdBLr3Uowo+OEA=";
  };

  postPatch = ''
Loading