mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
26 lines
679 B
Nix
26 lines
679 B
Nix
{ stdenv, lib, fetchurl, cmake, perl, gnuplot }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libcerf";
|
|
version = "2.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v${version}/libcerf-v${version}.tar.gz";
|
|
sha256 = "sha256-zO7+5G6EzojQdRAzkLT50Ew05Lw7ltczKSw2g21PcGU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake perl ];
|
|
|
|
passthru.tests = {
|
|
inherit gnuplot;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Complex error (erf), Dawson, Faddeeva, and Voigt function library";
|
|
homepage = "https://jugit.fz-juelich.de/mlz/libcerf";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|