python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libcerf / default.nix
blob7a3b963141894df1e271e64f42e686af0049359c
1 { stdenv, lib, fetchurl, cmake, perl, gnuplot }:
3 stdenv.mkDerivation rec {
4   pname = "libcerf";
5   version = "2.1";
7   src = fetchurl {
8     url = "https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v${version}/libcerf-v${version}.tar.gz";
9     sha256 = "sha256-ihzYt/rgS4KpUWglISm4wbrKCYooX/jT8leB3q0Ut1o=";
10   };
12   nativeBuildInputs = [ cmake perl ];
14   passthru.tests = {
15     inherit gnuplot;
16   };
18   meta = with lib; {
19     description = "Complex error (erf), Dawson, Faddeeva, and Voigt function library";
20     homepage = "https://jugit.fz-juelich.de/mlz/libcerf";
21     license = licenses.mit;
22     maintainers = with maintainers; [ orivej ];
23     platforms = platforms.all;
24   };