Commit 771c5525 authored by Mauricio Collares's avatar Mauricio Collares
Browse files

planarity: 3.0.2.0 -> 4.0.0.0

parent c115936c
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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;