tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
symphony: 5.7.2 -> 5.7.3
Bruno Rodrigues
5 months ago
b0b62fc1
d9e4342a
+15
-12
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sy
symphony
package.nix
+15
-12
pkgs/by-name/sy/symphony/package.nix
···
4
4
fetchFromGitHub,
5
5
coin-utils,
6
6
coinmp,
7
7
+
glpk,
8
8
+
osi,
7
9
gfortran,
8
10
libtool,
9
9
-
glpk,
10
10
-
osi,
11
11
pkg-config,
12
12
}:
13
13
14
14
-
stdenv.mkDerivation rec {
14
14
+
stdenv.mkDerivation (finalAttrs: {
15
15
pname = "symphony";
16
16
-
version = "5.7.2";
16
16
+
version = "5.7.3";
17
17
18
18
outputs = [ "out" ];
19
19
20
20
src = fetchFromGitHub {
21
21
owner = "coin-or";
22
22
repo = "SYMPHONY";
23
23
-
rev = "releases/${version}";
24
24
-
hash = "sha256-OdTUMG3iVhjhw5uKtUnsLCZ4DfMjYHm8+/ozfmw7J6c=";
23
23
+
tag = "releases/${finalAttrs.version}";
24
24
+
hash = "sha256-f97LICRykxhiZiSsSBE9IJBLL/ApWV+utvlHuUhx1PI=";
25
25
};
26
26
27
27
nativeBuildInputs = [
28
28
+
gfortran
28
29
libtool
29
30
pkg-config
31
31
+
];
32
32
+
33
33
+
buildInputs = [
34
34
+
coin-utils
35
35
+
coinmp
30
36
glpk
31
31
-
gfortran
32
32
-
coinmp
33
37
osi
34
34
-
coin-utils
35
38
];
36
39
37
40
meta = {
38
41
description = "Open-source solver, callable library, and development framework for mixed-integer linear programs (MILPs)";
39
42
homepage = "https://www.coin-or.org/SYMPHONY/index.htm";
40
40
-
changelog = "https://github.com/coin-or/SYMPHONY/blob/${version}/CHANGELOG.md";
41
41
-
platforms = [ "x86_64-linux" ];
43
43
+
changelog = "https://github.com/coin-or/SYMPHONY/blob/${finalAttrs.version}/CHANGELOG.md";
44
44
+
platforms = lib.platforms.linux;
42
45
license = lib.licenses.epl20;
43
46
maintainers = with lib.maintainers; [ b-rodrigues ];
44
47
};
45
45
-
}
48
48
+
})