nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

libmatheval: get patches from salsa.debian.org

http://anonscm.debian.org/cgit is not available anymore

c0bw3b 561e1812 b911f227

+8 -8
+8 -8
pkgs/development/libraries/libmatheval/default.nix
··· 15 15 # Patches coming from debian package 16 16 # https://packages.debian.org/source/sid/libs/libmatheval 17 17 patches = [ (fetchpatch { 18 - url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/002-skip-docs.patch"; 18 + url = "https://salsa.debian.org/science-team/libmatheval/raw/debian/1.1.11+dfsg-3/debian/patches/002-skip-docs.patch"; 19 19 sha256 = "1nnkk9aw4jj6nql46zhwq6vx74zrmr1xq5ix0xyvpawhabhgjg62"; 20 20 } ) 21 21 (fetchpatch { 22 - url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/003-guile2.0.patch"; 22 + url = "https://salsa.debian.org/science-team/libmatheval/raw/debian/1.1.11+dfsg-3/debian/patches/003-guile2.0.patch"; 23 23 sha256 = "1xgfw4finfvr20kjbpr4yl2djxmyr4lmvfa11pxirfvhrdi602qj"; 24 24 } ) 25 25 (fetchpatch { 26 - url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/disable_coth_test.patch"; 26 + url = "https://salsa.debian.org/science-team/libmatheval/raw/debian/1.1.11+dfsg-3/debian/patches/disable_coth_test.patch"; 27 27 sha256 = "0bai8jrd5azfz5afmjixlvifk34liq58qb7p9kb45k6kc1fqqxzm"; 28 28 } ) 29 29 ]; 30 - 30 + 31 31 meta = { 32 32 description = "A library to parse and evaluate symbolic expressions input as text"; 33 33 longDescription = '' 34 - GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic 35 - expressions input as text. It supports expressions in any number of variables of arbitrary 36 - names, decimal and symbolic constants, basic unary and binary operators, and elementary 37 - mathematical functions. In addition to parsing and evaluation, libmatheval can also compute 34 + GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic 35 + expressions input as text. It supports expressions in any number of variables of arbitrary 36 + names, decimal and symbolic constants, basic unary and binary operators, and elementary 37 + mathematical functions. In addition to parsing and evaluation, libmatheval can also compute 38 38 symbolic derivatives and output expressions to strings. 39 39 ''; 40 40 homepage = https://www.gnu.org/software/libmatheval/;