Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
doxygen,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ogdf";
|
|
version = "2023.09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ogdf";
|
|
repo = "ogdf";
|
|
tag = "elderberry-202309";
|
|
hash = "sha256-vnhPuMhz+pE4ExhRhjwHy4OilIkJ/kXc2LWU+9auY9k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
doxygen
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_CXX_FLAGS=-fPIC"
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DOGDF_WARNING_ERRORS=OFF"
|
|
];
|
|
|
|
meta = {
|
|
description = "Open Graph Drawing Framework/Open Graph algorithms and Data structure Framework";
|
|
homepage = "http://www.ogdf.net";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.ianwookim ];
|
|
platforms = lib.platforms.all;
|
|
longDescription = ''
|
|
OGDF stands both for Open Graph Drawing Framework (the original name) and
|
|
Open Graph algorithms and Data structures Framework.
|
|
|
|
OGDF is a self-contained C++ library for graph algorithms, in particular
|
|
for (but not restricted to) automatic graph drawing. It offers sophisticated
|
|
algorithms and data structures to use within your own applications or
|
|
scientific projects.
|
|
|
|
OGDF is developed and supported by Osnabrück University, TU Dortmund,
|
|
University of Cologne, University of Konstanz, and TU Ilmenau.
|
|
'';
|
|
};
|
|
}
|