summary refs log tree commit diff
path: root/pkgs/development/libraries/cln/default.nix
blob: e39386dca3f43fb473f31b96fc3272c345c4bdfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, gmp }:

stdenv.mkDerivation rec {
  name = "cln-${version}";
  version = "1.3.4";

  src = fetchurl {
    url = "${meta.homepage}${name}.tar.bz2";
    sha256 = "0j5p18hwbbrchsdbnc8d2bf9ncslhflri4i950gdnq7v6g2dg69d";
  };

  buildInputs = [ gmp ];

  meta = {
    description = "C/C++ library for numbers, a part of GiNaC";
    homepage = http://www.ginac.de/CLN/;
    maintainers = [ ];
    platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
  };
}