summary refs log tree commit diff
path: root/pkgs/applications/science/logic/poly/default.nix
blob: ee50a2d850401a3d99a9010220abf88f83faaf8d (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
{stdenv, fetchFromGitHub, gmp, cmake, python}:

stdenv.mkDerivation rec {
  pname = "libpoly";
  version = "0.1.8";

  src = fetchFromGitHub {
    owner = "SRI-CSL";
    repo = "libpoly";
    # they've pushed to the release branch, use explicit tag
    rev = "refs/tags/v${version}";
    sha256 = "1n3gijksnl2ybznq4lkwm2428f82423sxq18gnb2g1kiwqlzdaa3";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = [ gmp python ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/SRI-CSL/libpoly";
    description = "C library for manipulating polynomials";
    license = licenses.lgpl3;
    platforms = platforms.all;
  };
}