cadical: install library

This commit is contained in:
Guillaume Girol 2021-07-19 12:00:00 +00:00
parent b59c06dc92
commit 0708fe494b

View file

@ -11,14 +11,30 @@ stdenv.mkDerivation rec {
sha256 = "05lvnvapjawgkky38xknb9lgaliiwan4kggmb9yggl4ifpjrh8qf";
};
outputs = [ "out" "dev" "lib" ];
doCheck = true;
dontAddPrefix = true;
# the configure script is not generated by autotools and does not accept the
# arguments that the default configurePhase passes like --prefix and --libdir
configurePhase = ''
runHook preConfigure
./configure
runHook postConfigure
'';
installPhase = ''
runHook preInstall
install -Dm0755 build/cadical "$out/bin/cadical"
install -Dm0755 build/mobical "$out/bin/mobical"
mkdir -p "$out/share/doc/${pname}-${version}/"
install -Dm0755 {LICEN?E,README*,VERSION} "$out/share/doc/${pname}-${version}/"
install -Dm0644 src/ccadical.h "$dev/include/ccadical.h"
install -Dm0644 build/libcadical.a "$lib/lib/libcadical.a"
mkdir -p "$out/share/doc/${pname}/"
install -Dm0755 {LICEN?E,README*,VERSION} "$out/share/doc/${pname}/"
runHook postInstall
'';
meta = with lib; {