planarity: 3.0.2.0 -> 4.0.0.0 (#397098)

This commit is contained in:
Mauricio Collares
2025-04-10 10:26:42 -03:00
committed by GitHub
+4 -2
View File
@@ -3,21 +3,23 @@
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "planarity";
version = "3.0.2.0";
version = "4.0.0.0";
src = fetchFromGitHub {
owner = "graph-algorithms";
repo = "edge-addition-planarity-suite";
rev = "Version_${version}";
sha256 = "sha256-cUAh2MXCSmtxFtV6iTHgSRgsq/26DjWwxhWJH1+367A=";
sha256 = "sha256-A7huHvMgUyvw2zM9qA7Ax/1Ai5VZ6A1PZIo3eiCpu44=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
doCheck = true;