fd78240ac8
At some point, I'd like to make another attempt at71f1f4884b
("openssl: stop static binaries referencing libs"), which was reverted in195c7da07d
. One problem with my previous attempt is that I moved OpenSSL's libraries to a lib output, but many dependent packages were hardcoding the out output as the location of the libraries. This patch fixes every such case I could find in the tree. It won't have any effect immediately, but will mean these packages will automatically use an OpenSSL lib output if it is reintroduced in future. This patch should cause very few rebuilds, because it shouldn't make any change at all to most packages I'm touching. The few rebuilds that are introduced come from when I've changed a package builder not to use variable names like openssl.out in scripts / substitution patterns, which would be confusing since they don't hardcode the output any more. I started by making the following global replacements: ${pkgs.openssl.out}/lib -> ${lib.getLib pkgs.openssl}/lib ${openssl.out}/lib -> ${lib.getLib openssl}/lib Then I removed the ".out" suffix when part of the argument to lib.makeLibraryPath, since that function uses lib.getLib internally. Then I fixed up cases where openssl was part of the -L flag to the compiler/linker, since that unambigously is referring to libraries. Then I manually investigated and fixed the following packages: - pycurl - citrix-workspace - ppp - wraith - unbound - gambit - acl2 I'm reasonably confindent in my fixes for all of them. For acl2, since the openssl library paths are manually provided above anyway, I don't think openssl is required separately as a build input at all. Removing it doesn't make a difference to the output size, the file list, or the closure. I've tested evaluation with the OfBorg meta checks, to protect against introducing evaluation failures.
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchgit
|
|
, wrapLisp
|
|
, sbcl
|
|
, openssl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "clpm";
|
|
version = "0.4.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://gitlab.common-lisp.net/clpm/clpm";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-UhaLmbdsIPj6O+s262HUMxuz/5t43JR+TlOjq8Y2CDs=";
|
|
};
|
|
|
|
buildInputs = [
|
|
(wrapLisp sbcl)
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
openssl
|
|
];
|
|
|
|
postPatch = ''
|
|
# patch cl-plus-ssl to ensure that it finds libssl and libcrypto
|
|
sed 's|libssl.so|${lib.getLib openssl}/lib/libssl.so|' -i ext/cl-plus-ssl/src/reload.lisp
|
|
sed 's|libcrypto.so|${lib.getLib openssl}/lib/libcrypto.so|' -i ext/cl-plus-ssl/src/reload.lisp
|
|
# patch dexador to avoid error due to dexador being loaded multiple times
|
|
sed -i 's/defpackage/uiop:define-package/g' ext/dexador/src/dexador.lisp
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
# exporting home to avoid using /homeless-shelter/.cache/ as this will cause
|
|
# ld to complaing about `impure path used in link`.
|
|
export HOME=$TMP
|
|
|
|
common-lisp.sh --script scripts/build-release.lisp
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
cd build/release-staging/dynamic/clpm-${version}*/
|
|
INSTALL_ROOT=$out/ bash install.sh
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# fixupPhase results in fatal error in SBCL, `Can't find sbcl.core`
|
|
dontFixup = true;
|
|
|
|
meta = with lib; {
|
|
description = "Common Lisp Package Manager";
|
|
homepage = "https://www.clpm.dev/";
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.petterstorvik ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|