mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
96d41e393d
It's sad, but he's been inactive for the last five years. Keeping such people in meta.maintainers is counter-productive.
21 lines
472 B
Nix
21 lines
472 B
Nix
{ 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 = with stdenv.lib.platforms; allBut cygwin;
|
|
};
|
|
}
|