tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
4ti2: init at 1.6.9
AndersonTorres
4 years ago
4b0789d7
b1da4809
+39
2 changed files
expand all
collapse all
unified
split
pkgs
applications
science
math
4ti2
default.nix
top-level
all-packages.nix
+37
pkgs/applications/science/math/4ti2/default.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, autoreconfHook
5
5
+
, glpk
6
6
+
, gmp
7
7
+
}:
8
8
+
9
9
+
stdenv.mkDerivation rec{
10
10
+
pname = "4ti2";
11
11
+
version = "1.6.9";
12
12
+
13
13
+
src = fetchFromGitHub {
14
14
+
owner = pname;
15
15
+
repo = pname;
16
16
+
rev = "Release_${builtins.replaceStrings ["."] ["_"] version}";
17
17
+
hash = "sha256-cywneIM0sHt1iQsNfjyQDoDfdRjxpz4l3rfysi9YN20=";
18
18
+
};
19
19
+
20
20
+
nativeBuildInputs = [
21
21
+
autoreconfHook
22
22
+
];
23
23
+
24
24
+
buildInputs = [
25
25
+
glpk
26
26
+
gmp
27
27
+
];
28
28
+
29
29
+
installFlags = [ "install-exec" ];
30
30
+
31
31
+
meta = with lib;{
32
32
+
homepage = "https://4ti2.github.io/";
33
33
+
description = "A software package for algebraic, geometric and combinatorial problems on linear spaces";
34
34
+
license = with licenses; [ gpl2Plus ];
35
35
+
platforms = platforms.all;
36
36
+
};
37
37
+
}
+2
pkgs/top-level/all-packages.nix
···
29677
29677
29678
29678
### SCIENCE/MATH
29679
29679
29680
29680
+
_4ti2 = callPackage ../applications/science/math/4ti2 { };
29681
29681
+
29680
29682
almonds = callPackage ../applications/science/math/almonds { };
29681
29683
29682
29684
amd-blis = callPackage ../development/libraries/science/math/amd-blis { };