···4040 };
41414242 nixos-option =
4343- if lib.versionAtLeast (lib.getVersion pkgs.nix) "2.4pre"
4343+ if lib.versionAtLeast (lib.getVersion config.nix.package) "2.4pre"
4444 then null
4545 else pkgs.callPackage ./nixos-option { };
4646
+1
nixos/modules/services/cluster/kubernetes/pki.nix
···189189 # manually paste it in place. Just symlink.
190190 # otherwise, create the target file, ready for users to insert the token
191191192192+ mkdir -p $(dirname ${certmgrAPITokenPath})
192193 if [ -f "${cfsslAPITokenPath}" ]; then
193194 ln -fs "${cfsslAPITokenPath}" "${certmgrAPITokenPath}"
194195 else
···134134135135 fish = stdenv.mkDerivation rec {
136136 pname = "fish";
137137- version = "3.2.2";
137137+ version = "3.3.0";
138138139139 src = fetchurl {
140140 # There are differences between the release tarball and the tarball GitHub
···144144 # --version`), as well as the local documentation for all builtins (and
145145 # maybe other things).
146146 url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${pname}-${version}.tar.xz";
147147- sha256 = "WUTaGoiT0RsIKKT9kTbuF0VJ2v+z0K392JF4Vv5rQAk=";
147147+ sha256 = "sha256-pCFeTKsqWxAbC4hDcgvaPH65jooU3KCVC47xfpQoL6o=";
148148 };
149149150150 # Fix FHS paths in tests
+11-3
pkgs/shells/fish/plugins/pure.nix
···2233buildFishPlugin rec {
44 pname = "pure";
55- version = "3.4.2";
55+ version = "4.1.1";
6677 src = fetchFromGitHub {
88- owner = "rafaelrinaldi";
88+ owner = "pure-fish";
99 repo = "pure";
1010 rev = "v${version}";
1111- sha256 = "134sz3f98gb6z2vgd5kkm6dd8pka5gijk843c32s616w35y07sga";
1111+ sha256 = "1x1h65l8582p7h7w5986sc9vfd7b88a7hsi68dbikm090gz8nlxx";
1212 };
1313+1414+ # The tests aren't passing either on the project's CI.
1515+ # The release notes of the program for v3.5.0 say:
1616+ # > Tests are going crazy at the moment, should be fixed once fishtape 3.0
1717+ # > is released, and we do the switch.
1818+ # This is tracked in https://github.com/pure-fish/pure/issues/272
1919+ # and https://github.com/pure-fish/pure/pull/275.
2020+ doCheck = false;
13211422 checkInputs = [ git ];
1523 checkPlugins = [ fishtape ];
+1-1
pkgs/tools/X11/go-sct/default.nix
···2121 meta = with lib; {
2222 description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift";
2323 license = licenses.mit;
2424- maintainers = with maintainers; [ rvolosatovs cstrahan ];
2424+ maintainers = with maintainers; [ cstrahan ];
2525 platforms = platforms.linux ++ platforms.windows;
2626 };
2727}
+2-2
pkgs/tools/audio/abcmidi/default.nix
···2233stdenv.mkDerivation rec {
44 pname = "abcMIDI";
55- version = "2021.06.24";
55+ version = "2021.06.27";
6677 src = fetchzip {
88 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
99- sha256 = "sha256-FaB1QTl4xCTz/sbgptXQHtD0wadXG3UCgdZoOPCOH0U=";
99+ sha256 = "sha256-tLKxs1p1CIU/2XV1fMgWrwdtePeXOBZUMjz46kgp9C0=";
1010 };
11111212 meta = with lib; {