| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -48,25 +48,43 @@ | |||
| 48 | 48 | // (pkgs.lib.optionalAttrs withSQLite { | |
| 49 | 49 | inherit (pkgs) sqlite; | |
| 50 | 50 | }) | |
| 51 | - // (pkgs.lib.optionalAttrs withSSL { | ||
| 52 | - openssl = pkgs.openssl.overrideAttrs (old: { | ||
| 53 | - version = "3.5.4"; | ||
| 54 | - src = pkgs.fetchurl { | ||
| 55 | - url = builtins.replaceStrings [ old.version ] [ "3.5.4" ] old.src.url; | ||
| 56 | - hash = "sha256-lnMR+ElVMWlpvbHY1LmDcY70IzhjnGIexMNP3e81Xpk="; | ||
| 57 | - }; | ||
| 58 | - doCheck = false; | ||
| 59 | - configureFlags = (old.configureFlags or [ ]) ++ [ | ||
| 60 | - "no-docs" | ||
| 61 | - "no-tests" | ||
| 62 | - ]; | ||
| 63 | - outputs = [ | ||
| 64 | - "bin" | ||
| 65 | - "out" | ||
| 66 | - "dev" | ||
| 67 | - ]; | ||
| 68 | - }); | ||
| 69 | - }) | ||
| 51 | + // (pkgs.lib.optionalAttrs withSSL ( | ||
| 52 | + let | ||
| 53 | + version = "3.5.5"; | ||
| 54 | + opensslSrc = "/pkgs/development/libraries/openssl/"; | ||
| 55 | + inherit | ||
| 56 | + (pkgs.callPackage "${ | ||
| 57 | + pkgs.fetchgit { | ||
| 58 | + url = "https://github.com/NixOS/nixpkgs.git"; | ||
| 59 | + rev = "a5b50d31e0fd60227495ad2b2760cbda3581ec77"; | ||
| 60 | + sparseCheckout = [ opensslSrc ]; | ||
| 61 | + nonConeMode = true; | ||
| 62 | + hash = "sha256-Qo3IoUeccGO2GxFSYufyYjZmN5LGSek0z82pN73YXic="; | ||
| 63 | + } | ||
| 64 | + }${opensslSrc}" { }) | ||
| 65 | + openssl_3_6 | ||
| 66 | + ; | ||
| 67 | + in | ||
| 68 | + { | ||
| 69 | + openssl = openssl_3_6.overrideAttrs (old: { | ||
| 70 | + inherit version; | ||
| 71 | + src = pkgs.fetchurl { | ||
| 72 | + url = builtins.replaceStrings [ old.version ] [ version ] old.src.url; | ||
| 73 | + hash = "sha256-soyRUyqLZaH5g7TCi3SIF05KAQCOKc6Oab14nyi8Kok="; | ||
| 74 | + }; | ||
| 75 | + doCheck = false; | ||
| 76 | + configureFlags = (old.configureFlags or [ ]) ++ [ | ||
| 77 | + "no-docs" | ||
| 78 | + "no-tests" | ||
| 79 | + ]; | ||
| 80 | + outputs = [ | ||
| 81 | + "bin" | ||
| 82 | + "out" | ||
| 83 | + "dev" | ||
| 84 | + ]; | ||
| 85 | + }); | ||
| 86 | + } | ||
| 87 | + )) | ||
| 70 | 88 | // (pkgs.lib.optionalAttrs withTemporal { | |
| 71 | 89 | inherit (pkgs) temporal_capi; | |
| 72 | 90 | }) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments