Skip to content

Commit 4288337

Browse files
committed
fixup! tools: update nixpkgs-unstable to 02f2cb8e0feb4596d20cc52fda73ccee960
1 parent 346ab73 commit 4288337

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

shell.nix

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,18 @@
2929
})
3030
];
3131
};
32-
openssl = pkgs.openssl.overrideAttrs {
32+
openssl = pkgs.openssl.overrideAttrs (old: {
3333
version = "3.5.4";
3434
src = pkgs.fetchurl {
35-
url = builtins.replaceStrings [ pkgs.openssl.version ] [ "3.5.4" ] pkgs.openssl.src.url;
35+
url = builtins.replaceStrings [ old.version ] [ "3.5.4" ] old.src.url;
3636
hash = "sha256-lnMR+ElVMWlpvbHY1LmDcY70IzhjnGIexMNP3e81Xpk=";
3737
};
38-
};
38+
doCheck = !pkgs.stdenv.buildPlatform.isDarwin;
39+
configureFlags = (old.configureFlags or []) ++ [
40+
"no-docs"
41+
] ++ pkgs.lib.optional pkgs.stdenv.buildPlatform.isDarwin "no-tests";
42+
outputs = [ "bin" "out" "dev" ];
43+
});
3944
},
4045
ccache ? pkgs.ccache,
4146
ninja ? pkgs.ninja,

0 commit comments

Comments
 (0)