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

Merge master into staging-nixos

parents aa9c2471 c8635a88
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -9,9 +9,9 @@
      },
      "branch": "nixpkgs-unstable",
      "submodules": false,
      "revision": "e57b3b16ad8758fd681511a078f35c416a8cc939",
      "url": "https://github.com/NixOS/nixpkgs/archive/e57b3b16ad8758fd681511a078f35c416a8cc939.tar.gz",
      "hash": "04zp6jjd4xr6jfps84p8yh5ym5962mii4825fn75lqk14sz4rq56"
      "revision": "d5faa84122bc0a1fd5d378492efce4e289f8eac1",
      "url": "https://github.com/NixOS/nixpkgs/archive/d5faa84122bc0a1fd5d378492efce4e289f8eac1.tar.gz",
      "hash": "0r2pkx7m1pb0fzfhb74jkr8y5qhs2b93sak5bd5rabvbm2zn36zs"
    },
    "treefmt-nix": {
      "type": "Git",
@@ -22,9 +22,9 @@
      },
      "branch": "main",
      "submodules": false,
      "revision": "5eda4ee8121f97b218f7cc73f5172098d458f1d1",
      "url": "https://github.com/numtide/treefmt-nix/archive/5eda4ee8121f97b218f7cc73f5172098d458f1d1.tar.gz",
      "hash": "1vqns9hjhmbnhdq2xvcmdxng11jrmcn9lpk2ncfh1f969z9lj8y9"
      "revision": "f56b1934f5f8fcab8deb5d38d42fd692632b47c2",
      "url": "https://github.com/numtide/treefmt-nix/archive/f56b1934f5f8fcab8deb5d38d42fd692632b47c2.tar.gz",
      "hash": "1klcfmqb4q4vvy9kdm5i9ddl26rhlyhf1mrd5aw1d4529bqnq5b5"
    }
  },
  "version": 5
+0 −6
Original line number Diff line number Diff line
@@ -2360,12 +2360,6 @@
    name = "Vincent Fischer";
    keys = [ { fingerprint = "BF47 81E1 F304 1ADF 18CE  C401 DE16 C7D1 536D A72F"; } ];
  };
  astronaut0212 = {
    email = "goatastronaut0212@outlook.com";
    github = "goatastronaut0212";
    githubId = 119769817;
    name = "goatastronaut0212";
  };
  asymmetric = {
    email = "lorenzo@mailbox.org";
    github = "asymmetric";
+10 −9
Original line number Diff line number Diff line
@@ -82,7 +82,8 @@ import ../make-test-python.nix (
            values-file = testChart // {
              # Remove unsafeDiscardStringContext workaround when Nix can convert a string to a path
              # https://github.com/NixOS/nix/issues/12407
              values = /.
              values =
                /.
                + builtins.unsafeDiscardStringContext (
                  builtins.toFile "k3s-test-chart-values.yaml" ''
                    runCommand: "echo 'Hello, file!'"
+3 −3
Original line number Diff line number Diff line
@@ -29,9 +29,9 @@ stdenv.mkDerivation {

  buildCommand = ''
    mkdir -pv $out/repos
    ${lib.concatMapStrings (
      r: "cp -r ${fetchgit r} $out/repos/${hashname r}\n"
    ) (import ./src-libs.nix)}
    ${lib.concatMapStrings (r: "cp -r ${fetchgit r} $out/repos/${hashname r}\n") (
      import ./src-libs.nix
    )}

    ${mkscript "$out/bin/checkout-git.sh" ''
      if test "$#" -ne 4; then
+0 −1
Original line number Diff line number Diff line
@@ -90,7 +90,6 @@ buildNpmPackage rec {
    homepage = "https://github.com/sindresorhus/caprine";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      astronaut0212
      khaneliman
    ];
    inherit (electron.meta) platforms;
Loading