lol

planarity: init at 3.0.0.5 (#38800)

authored by

Timo Kaufmann and committed by
Robert Schütz
d8e5160b ddb7c0e9

+42
+40
pkgs/development/libraries/science/math/planarity/default.nix
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , fetchpatch 4 + , autoreconfHook 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "planarity"; 9 + version = "3.0.0.5"; 10 + name = "${pname}-${version}"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "graph-algorithms"; 14 + repo = "edge-addition-planarity-suite"; 15 + rev = "Version_${version}"; 16 + sha256 = "01cm7ay1njkfsdnmnvh5zwc7wg7x189hq1vbfhh9p3ihrbnmqzh8"; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + autoreconfHook 21 + ]; 22 + 23 + doCheck = true; 24 + 25 + patches = [ 26 + # declare variables declared in headers as extern, not yet merged upstream 27 + (fetchpatch { 28 + url = "https://github.com/graph-algorithms/edge-addition-planarity-suite/pull/3.patch"; 29 + sha256 = "1nqjc4clr326imz4jxqxcxv2hgh1sjgzll27k5cwkdin8lnmmil8"; 30 + }) 31 + ]; 32 + 33 + meta = with stdenv.lib; { 34 + homepage = https://github.com/graph-algorithms/edge-addition-planarity-suite; 35 + description = "A library for implementing graph algorithms"; 36 + license = licenses.bsd3; 37 + maintainers = with maintainers; [ timokau ]; 38 + platforms = platforms.unix; 39 + }; 40 + }
+2
pkgs/top-level/all-packages.nix
··· 19843 19843 19844 19844 openspecfun = callPackage ../development/libraries/science/math/openspecfun {}; 19845 19845 19846 + planarity = callPackage ../development/libraries/science/math/planarity { }; 19847 + 19846 19848 fenics = callPackage ../development/libraries/science/math/fenics { 19847 19849 inherit (python3Packages) numpy ply pytest python six sympy; 19848 19850 pythonPackages = python3Packages;