transmission: use openssl_legacy
instead of broken debian/ubuntu patch
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, fetchurl
|
||||
, cmake
|
||||
, pkg-config
|
||||
, openssl
|
||||
@@ -47,14 +46,6 @@ in stdenv.mkDerivation {
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
patches = [
|
||||
# fix build with openssl 3.0
|
||||
(fetchurl {
|
||||
url = "https://salsa.debian.org/debian/transmission/-/raw/debian/3.00-2.1/debian/patches/openssl3-compat.patch";
|
||||
hash = "sha256-v+SDTW/lCtc8B3TuhQB1pmjW/QRAGLtYncaImNNwpes=";
|
||||
})
|
||||
];
|
||||
|
||||
outputs = [ "out" "apparmor" ];
|
||||
|
||||
cmakeFlags =
|
||||
|
||||
@@ -32842,7 +32842,10 @@ with pkgs;
|
||||
|
||||
transcribe = callPackage ../applications/audio/transcribe { };
|
||||
|
||||
transmission = callPackage ../applications/networking/p2p/transmission { };
|
||||
transmission = callPackage ../applications/networking/p2p/transmission {
|
||||
# https://github.com/NixOS/nixpkgs/issues/207047
|
||||
openssl = openssl_legacy;
|
||||
};
|
||||
libtransmission = transmission.override {
|
||||
installLib = true;
|
||||
enableDaemon = false;
|
||||
|
||||
Reference in New Issue
Block a user