planarity: 3.0.0.5 -> 3.0.2.0

+2 -11
+2 -11
pkgs/development/libraries/science/math/planarity/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 - , fetchpatch 4 3 , autoreconfHook 5 4 }: 6 5 7 6 stdenv.mkDerivation rec { 8 7 pname = "planarity"; 9 - version = "3.0.0.5"; 8 + version = "3.0.2.0"; 10 9 11 10 src = fetchFromGitHub { 12 11 owner = "graph-algorithms"; 13 12 repo = "edge-addition-planarity-suite"; 14 13 rev = "Version_${version}"; 15 - sha256 = "01cm7ay1njkfsdnmnvh5zwc7wg7x189hq1vbfhh9p3ihrbnmqzh8"; 14 + sha256 = "sha256-cUAh2MXCSmtxFtV6iTHgSRgsq/26DjWwxhWJH1+367A="; 16 15 }; 17 16 18 17 nativeBuildInputs = [ ··· 20 19 ]; 21 20 22 21 doCheck = true; 23 - 24 - patches = [ 25 - # declare variables declared in headers as extern, not yet merged upstream 26 - (fetchpatch { 27 - url = "https://github.com/graph-algorithms/edge-addition-planarity-suite/pull/3.patch"; 28 - sha256 = "1nqjc4clr326imz4jxqxcxv2hgh1sjgzll27k5cwkdin8lnmmil8"; 29 - }) 30 - ]; 31 22 32 23 meta = with lib; { 33 24 homepage = "https://github.com/graph-algorithms/edge-addition-planarity-suite";