summary refs log tree commit diff
path: root/pkgs/applications/science/math/4ti2/default.nix
blob: 9424612c7587a33cf55b21bc288da07dd4869328 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, glpk
, gmp
}:

stdenv.mkDerivation rec{
  pname = "4ti2";
  version = "1.6.10";

  src = fetchFromGitHub {
    owner = pname;
    repo = pname;
    rev = "Release_${builtins.replaceStrings ["."] ["_"] version}";
    hash = "sha256-Rz8O1Tf81kzpTGPq7dkZJvv444F1/VqKu7VuRvH59kQ=";
  };

  nativeBuildInputs = [
    autoreconfHook
  ];

  buildInputs = [
    glpk
    gmp
  ];

  installFlags = [ "install-exec" ];

  meta = with lib;{
    homepage = "https://4ti2.github.io/";
    description = "A software package for algebraic, geometric and combinatorial problems on linear spaces";
    license = with licenses; [ gpl2Plus ];
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.all;
  };
}