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