adolc: modernize; fix clang build (#354642)

This commit is contained in:
Austin Horstman 2024-11-09 23:13:17 -06:00 committed by GitHub
commit 343b0a2225
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,23 +1,29 @@
{ lib, stdenv, fetchFromGitHub }:
{
lib,
stdenv,
fetchFromGitHub,
llvmPackages,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "adolc";
version = "2.7.2";
src = fetchFromGitHub {
owner = "coin-or";
repo = "ADOL-C";
sha256 = "1w0x0p32r1amfmh2lyx33j4cb5bpkwjr5z0ll43zi5wf5gsvckd1";
rev = "releases/${version}";
rev = "refs/tags/releases/${finalAttrs.version}";
hash = "sha256-oU229SuOl/gHoRT8kiWfd5XFiByjeypgdVWFLMYFHfA=";
};
configureFlags = [ "--with-openmp-flag=-fopenmp" ];
buildInputs = lib.optional stdenv.cc.isClang llvmPackages.openmp;
meta = with lib; {
description = "Automatic Differentiation of C/C++";
homepage = "https://github.com/coin-or/ADOL-C";
maintainers = [ maintainers.bzizou ];
license = licenses.gpl2Plus;
};
}
})