linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libcerf / default.nix
blob287c9a61b9c74eb6e4a99f6f68d9dc4a312de22a
1 { stdenv, lib, fetchurl, cmake, perl }:
3 stdenv.mkDerivation rec {
4   pname = "libcerf";
5   version = "2.0";
7   src = fetchurl {
8     url = "https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v${version}/libcerf-v${version}.tar.gz";
9     sha256 = "05lpaxmy6275nbzvf1ahxcfymyph89pvlgg8h9sp9iwal4g8nvn8";
10   };
12   nativeBuildInputs = [ cmake perl ];
14   meta = with lib; {
15     description = "Complex error (erf), Dawson, Faddeeva, and Voigt function library";
16     homepage = "https://jugit.fz-juelich.de/mlz/libcerf";
17     license = licenses.mit;
18     maintainers = with maintainers; [ orivej ];
19     platforms = platforms.all;
20   };