libcerf: 1.5 -> 1.13 (#69218)
Upstream has moved the src tarball download location and homepage for `libcerf`, so the current package is broken. While fixing it, let's upgrade to the latest version, which is built with cmake now. Co-Authored-By: Jon <jonringer@users.noreply.github.com>
This commit is contained in:
parent
71e097936b
commit
c9824f0173
@ -1,16 +1,19 @@
|
|||||||
{ stdenv, lib, fetchurl }:
|
{ stdenv, lib, fetchurl, cmake, perl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "libcerf-1.5";
|
pname = "libcerf";
|
||||||
|
version = "1.13";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://apps.jcns.fz-juelich.de/src/libcerf/libcerf-1.5.tgz";
|
url = "https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v${version}/libcerf-v${version}.tar.gz";
|
||||||
sha256 = "11jwr8ql4a9kmv04ycgwk4dsqnlv4l65a8aa0x1i3y7zwx3w2vg3";
|
sha256 = "01d3fr4qa0080xdgp66mjbsa884qivn9y83p7rdyz2l3my0rysg4";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake perl ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Complex error (erf), Dawson, Faddeeva, and Voigt function library";
|
description = "Complex error (erf), Dawson, Faddeeva, and Voigt function library";
|
||||||
homepage = http://apps.jcns.fz-juelich.de/doku/sc/libcerf;
|
homepage = https://jugit.fz-juelich.de/mlz/libcerf;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ orivej ];
|
maintainers = with maintainers; [ orivej ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user