Skip to content

Commit

Permalink
Bump nixpkgs (#4273)
Browse files Browse the repository at this point in the history
  • Loading branch information
smatting authored Oct 21, 2024
1 parent d70fcee commit d8b0016
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions nix/manual-overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ hself: hsuper: {
# -----------------
cryptostore = hlib.addBuildDepends (hlib.dontCheck (hlib.appendConfigureFlags hsuper.cryptostore [ "-fuse_crypton" ]))
[ hself.crypton hself.crypton-x509 hself.crypton-x509-validation ];
# Make hoogle static to reduce size of the hoogle image
hoogle = hlib.justStaticExecutables hsuper.hoogle;
# doJailbreak because upstreams requires a specific crypton-connection version we don't have
hoogle = hlib.justStaticExecutables (hlib.doJailbreak (hlib.dontCheck (hsuper.hoogle)));
http2-manager = hlib.enableCabalFlag hsuper.http2-manager "-f-test-trailing-dot";
sodium-crypto-sign = hlib.addPkgconfigDepend hsuper.sodium-crypto-sign libsodium.dev;
types-common-journal = hlib.addBuildTool hsuper.types-common-journal protobuf;
Expand Down
6 changes: 3 additions & 3 deletions nix/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"homepage": "https://github.com/NixOS/nixpkgs",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "154bcb95ad51bc257c2ce4043a725de6ca700ef6",
"sha256": "0gv8wgjqldh9nr3lvpjas7sk0ffyahmvfrz5g4wd8l2r15wyk67f",
"rev": "4f31540079322e6013930b5b2563fd10f96917f0",
"sha256": "12748r3h44hy3a41slm5hcihn1nhrxjlgp75qz6iwzazkxnclx00",
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/154bcb95ad51bc257c2ce4043a725de6ca700ef6.tar.gz",
"url": "https://github.com/NixOS/nixpkgs/archive/4f31540079322e6013930b5b2563fd10f96917f0.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}
}
2 changes: 1 addition & 1 deletion nix/wire-server.nix
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ in
pkgs.netcat
pkgs.niv
pkgs.haskellPackages.apply-refact
(pkgs.python310.withPackages
(pkgs.python3.withPackages
(ps: with ps; [
black
bokeh
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env bash
openssl genpkey -algorithm ed25519 > ed25519.pem
openssl genpkey -algorithm ec -pkeyopt ec_paramgen_curve:P-256 > ecdsa_secp256r1_sha256.pem
openssl genpkey -algorithm ec -pkeyopt ec_paramgen_curve:P-384 > ecdsa_secp384r1_sha384.pem
Expand Down

0 comments on commit d8b0016

Please sign in to comment.