My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/libraries/cln/default.nix

21 lines
496 B

{ 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 ];
6 years ago
meta = with stdenv.lib; {
description = "C/C++ library for numbers, a part of GiNaC";
homepage = http://www.ginac.de/CLN/;
6 years ago
license = licenses.gpl2;
platforms = platforms.unix; # Once had cygwin problems
};
}