nixpkgs/pkgs/development/libraries/cln/default.nix
Vladimír Čunát 96d41e393d
treewide: purge maintainers.urkud
It's sad, but he's been inactive for the last five years.
Keeping such people in meta.maintainers is counter-productive.
2017-03-27 19:52:29 +02:00

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;
};
}