fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, gmp }:
2
3stdenv.mkDerivation rec {
4 name = "cln-1.3.3";
5
6 src = fetchurl {
7 url = "${meta.homepage}${name}.tar.bz2";
8 sha256 = "04i6kdjwm4cr5pa70pilifnpvsh430rrlapkgw1x8c5vxkijxz2p";
9 };
10
11 buildInputs = [ gmp ];
12
13 meta = {
14 description = "C/C++ library for numbers, a part of GiNaC";
15 homepage = http://www.ginac.de/CLN/;
16 maintainers = [ stdenv.lib.maintainers.urkud ];
17 platforms = with stdenv.lib.platforms; allBut cygwin;
18 };
19}