···1{ pname
2, dir
3-, ringrtcPrefix ? ""
4, version
5, hash
6, stdenv
···161 --replace "/opt/${dir}/${pname}" $out/bin/${pname}
162163 autoPatchelf --no-recurse -- "$out/lib/${dir}/"
164- patchelf --add-needed ${libpulseaudio}/lib/libpulse.so "$out/lib/${dir}/resources/app.asar.unpacked/node_modules/${ringrtcPrefix}ringrtc/build/linux/libringrtc-x64.node"
165 '';
166167 # Tests if the application launches and waits for "Link your phone to Signal Desktop":
···1{ pname
2, dir
03, version
4, hash
5, stdenv
···160 --replace "/opt/${dir}/${pname}" $out/bin/${pname}
161162 autoPatchelf --no-recurse -- "$out/lib/${dir}/"
163+ patchelf --add-needed ${libpulseaudio}/lib/libpulse.so "$out/lib/${dir}/resources/app.asar.unpacked/node_modules/@signalapp/ringrtc/build/linux/libringrtc-x64.node"
164 '';
165166 # Tests if the application launches and waits for "Link your phone to Signal Desktop":
···226 latestCompatibleLinuxPackages = linuxPackages_6_1;
227228 # this package should point to the latest release.
229- version = "2.1.8";
230231- sha256 = "sha256-/+23SEtywa7b1dgvQNmEGrfqXzM1mlk00TSpuiCkQOk=";
232 };
233234 zfsUnstable = common {
···240 # IMPORTANT: Always use a tagged release candidate or commits from the
241 # zfs-<version>-staging branch, because this is tested by the OpenZFS
242 # maintainers.
243- version = "2.1.9-staging-2023-01-19";
244- rev = "04b02785b67f9b976c43643dd52ce6cdbc22e11e";
245246- sha256 = "sha256-/+23SEtywa7b1dgvQNmEGrfqXzM1mlk00TSpuiCkQOk=";
247248 isUnstable = true;
249 };
···226 latestCompatibleLinuxPackages = linuxPackages_6_1;
227228 # this package should point to the latest release.
229+ version = "2.1.9";
230231+ sha256 = "RT2ijcXhdw5rbz1niDjrqg6G/uOjyrJiTlS4qijiWqc=";
232 };
233234 zfsUnstable = common {
···240 # IMPORTANT: Always use a tagged release candidate or commits from the
241 # zfs-<version>-staging branch, because this is tested by the OpenZFS
242 # maintainers.
243+ version = "2.1.10-staging-2023-01-24";
244+ rev = "92e0d9d183ce6752cd52f7277c8321d81df9ffee";
245246+ sha256 = "RT2ijcXhdw5rbz1niDjrqg6G/uOjyrJiTlS4qijiWqc=";
247248 isUnstable = true;
249 };
···1{ lib, stdenv, fetchFromGitHub, cmake, postgresql, openssl, libkrb5 }:
23# # To enable on NixOS:
4+# config.services.postgresql = let
5+# # The postgresql pkgs has to be taken from the
6+# # postgresql package used, so the extensions
7+# # are built for the correct postgresql version.
8+# postgresqlPackages = config.services.postgresql.package.pkgs;
9+# in {
10+# extraPlugins = with postgresqlPackages; [ timescaledb ];
11+# settings.shared_preload_libraries = "timescaledb";
12# }
1314stdenv.mkDerivation rec {