tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
planarity: 3.0.0.5 -> 3.0.2.0
Mauricio Collares
3 years ago
4d4ffdea
cf22e7bd
+2
-11
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
science
math
planarity
default.nix
+2
-11
pkgs/development/libraries/science/math/planarity/default.nix
···
1
{ lib, stdenv
2
, fetchFromGitHub
3
-
, fetchpatch
4
, autoreconfHook
5
}:
6
7
stdenv.mkDerivation rec {
8
pname = "planarity";
9
-
version = "3.0.0.5";
10
11
src = fetchFromGitHub {
12
owner = "graph-algorithms";
13
repo = "edge-addition-planarity-suite";
14
rev = "Version_${version}";
15
-
sha256 = "01cm7ay1njkfsdnmnvh5zwc7wg7x189hq1vbfhh9p3ihrbnmqzh8";
16
};
17
18
nativeBuildInputs = [
···
20
];
21
22
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
32
meta = with lib; {
33
homepage = "https://github.com/graph-algorithms/edge-addition-planarity-suite";
···
1
{ lib, stdenv
2
, fetchFromGitHub
0
3
, autoreconfHook
4
}:
5
6
stdenv.mkDerivation rec {
7
pname = "planarity";
8
+
version = "3.0.2.0";
9
10
src = fetchFromGitHub {
11
owner = "graph-algorithms";
12
repo = "edge-addition-planarity-suite";
13
rev = "Version_${version}";
14
+
sha256 = "sha256-cUAh2MXCSmtxFtV6iTHgSRgsq/26DjWwxhWJH1+367A=";
15
};
16
17
nativeBuildInputs = [
···
19
];
20
21
doCheck = true;
0
0
0
0
0
0
0
0
22
23
meta = with lib; {
24
homepage = "https://github.com/graph-algorithms/edge-addition-planarity-suite";