Skip to content

Commit

Permalink
Bump nixpkgs to latest unstable, unpin openssl (#2828)
Browse files Browse the repository at this point in the history
* Bump nixpkgs to latest unstable, stop using forked nixpkgs

* Use openssl 3.0.7 for HsOpenSSL

Latest nixpkgs unstable contains the fixed version of openssl.

* nix/sources.json: Update description and homepage

`niv update` misses this: nmattia/niv#358
  • Loading branch information
akshaymankar committed Nov 8, 2022
1 parent 51445a9 commit aaf5b1c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
1 change: 1 addition & 0 deletions changelog.d/5-internal/nixpkgs-bump
@@ -0,0 +1 @@
Bump nixpkgs to latest unstable. Stop using forked nixpkgs.
4 changes: 1 addition & 3 deletions nix/manual-overrides.nix
@@ -1,4 +1,4 @@
{ libsodium, protobuf, hlib, mls-test-cli, openssl }:
{ libsodium, protobuf, hlib, mls-test-cli }:
# FUTUREWORK: Figure out a way to detect if some of these packages are not
# actually marked broken, so we can cleanup this file on every nixpkgs bump.
hself: hsuper: {
Expand Down Expand Up @@ -58,6 +58,4 @@ hself: hsuper: {

# Make hoogle static to reduce size of the hoogle image
hoogle = hlib.justStaticExecutables hsuper.hoogle;

HsOpenSSL = hsuper.HsOpenSSL.override { inherit openssl; };
}
14 changes: 7 additions & 7 deletions nix/sources.json
@@ -1,14 +1,14 @@
{
"nixpkgs": {
"branch": "hls-hlint-plugin-workaround",
"description": "Wire's fork of NixOS/nixpkgs. Use until HLS > 1.7.0.0 is available in NixOS/nixpkgs",
"homepage": "https://github.com/wireapp/nixpkgs",
"owner": "wireapp",
"branch": "nixpkgs-unstable",
"description": "Nix Packages collection",
"homepage": "https://github.com/NixOS/nixpkgs",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "0f8a37f54f802a9e8bcf3bcfa89c5ab2017d9498",
"sha256": "1g28g6m3bs8axwkih8ihnv2h8g53s267l7kpaghwxzr65bz6hj7w",
"rev": "1f3ebb2bd1a353a42e8f833895c26d8415c7b791",
"sha256": "03y1a3lv44b4fdnykyms5nd24v2mqn8acz1xa4jkbmryc29rsgcw",
"type": "tarball",
"url": "https://github.com/wireapp/nixpkgs/archive/0f8a37f54f802a9e8bcf3bcfa89c5ab2017d9498.tar.gz",
"url": "https://github.com/NixOS/nixpkgs/archive/1f3ebb2bd1a353a42e8f833895c26d8415c7b791.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}
}
1 change: 0 additions & 1 deletion nix/wire-server.nix
Expand Up @@ -123,7 +123,6 @@ let lib = pkgs.lib;
];
manualOverrides = import ./manual-overrides.nix (with pkgs; {
inherit hlib libsodium protobuf mls-test-cli;
openssl = openssl_1_1;
});

executables = hself: hsuper:
Expand Down

0 comments on commit aaf5b1c

Please sign in to comment.