···189 # manually paste it in place. Just symlink.
190 # otherwise, create the target file, ready for users to insert the token
1910192 if [ -f "${cfsslAPITokenPath}" ]; then
193 ln -fs "${cfsslAPITokenPath}" "${certmgrAPITokenPath}"
194 else
···189 # manually paste it in place. Just symlink.
190 # otherwise, create the target file, ready for users to insert the token
191192+ mkdir -p $(dirname ${certmgrAPITokenPath})
193 if [ -f "${cfsslAPITokenPath}" ]; then
194 ln -fs "${cfsslAPITokenPath}" "${certmgrAPITokenPath}"
195 else
···134135 fish = stdenv.mkDerivation rec {
136 pname = "fish";
137- version = "3.2.2";
138139 src = fetchurl {
140 # There are differences between the release tarball and the tarball GitHub
···144 # --version`), as well as the local documentation for all builtins (and
145 # maybe other things).
146 url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${pname}-${version}.tar.xz";
147- sha256 = "WUTaGoiT0RsIKKT9kTbuF0VJ2v+z0K392JF4Vv5rQAk=";
148 };
149150 # Fix FHS paths in tests
···134135 fish = stdenv.mkDerivation rec {
136 pname = "fish";
137+ version = "3.3.0";
138139 src = fetchurl {
140 # There are differences between the release tarball and the tarball GitHub
···144 # --version`), as well as the local documentation for all builtins (and
145 # maybe other things).
146 url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${pname}-${version}.tar.xz";
147+ sha256 = "sha256-pCFeTKsqWxAbC4hDcgvaPH65jooU3KCVC47xfpQoL6o=";
148 };
149150 # Fix FHS paths in tests
···23buildFishPlugin rec {
4 pname = "pure";
5+ version = "4.1.1";
67 src = fetchFromGitHub {
8+ owner = "pure-fish";
9 repo = "pure";
10 rev = "v${version}";
11+ sha256 = "1x1h65l8582p7h7w5986sc9vfd7b88a7hsi68dbikm090gz8nlxx";
12 };
13+14+ # The tests aren't passing either on the project's CI.
15+ # The release notes of the program for v3.5.0 say:
16+ # > Tests are going crazy at the moment, should be fixed once fishtape 3.0
17+ # > is released, and we do the switch.
18+ # This is tracked in https://github.com/pure-fish/pure/issues/272
19+ # and https://github.com/pure-fish/pure/pull/275.
20+ doCheck = false;
2122 checkInputs = [ git ];
23 checkPlugins = [ fishtape ];
+1-1
pkgs/tools/X11/go-sct/default.nix
···21 meta = with lib; {
22 description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift";
23 license = licenses.mit;
24- maintainers = with maintainers; [ rvolosatovs cstrahan ];
25 platforms = platforms.linux ++ platforms.windows;
26 };
27}
···21 meta = with lib; {
22 description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift";
23 license = licenses.mit;
24+ maintainers = with maintainers; [ cstrahan ];
25 platforms = platforms.linux ++ platforms.windows;
26 };
27}