2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, gmp, zlib }:
|
2018-05-22 18:17:32 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2023-04-16 07:19:43 +00:00
|
|
|
version = "4.3.1";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "form";
|
2018-05-22 18:17:32 +00:00
|
|
|
|
|
|
|
# This tarball is released by author, it is not downloaded from tag, so can't use fetchFromGitHub
|
|
|
|
src = fetchurl {
|
2023-04-16 07:19:43 +00:00
|
|
|
url = "https://github.com/vermaseren/form/releases/download/v4.3.1/form-4.3.1.tar.gz";
|
|
|
|
sha256 = "sha256-8fUS3DT+m71rGfLf7wX8uZEt+0PINop1t5bsRy7ou84=";
|
2018-05-22 18:17:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp zlib ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-05-22 18:17:32 +00:00
|
|
|
description = "The FORM project for symbolic manipulation of very big expressions";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.nikhef.nl/~form/";
|
2018-05-22 18:17:32 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.veprbl ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|