mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 03:25:02 +00:00
6a987f5730
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/form/versions
23 lines
697 B
Nix
23 lines
697 B
Nix
{ stdenv, fetchurl, gmp, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "4.2.1";
|
|
name = "form-${version}";
|
|
|
|
# This tarball is released by author, it is not downloaded from tag, so can't use fetchFromGitHub
|
|
src = fetchurl {
|
|
url = "https://github.com/vermaseren/form/releases/download/v4.2.1/form-4.2.1.tar.gz";
|
|
sha256 = "0a0smc10gm85vxd85942n5azy88w5qs5avbqrw0lw0yb9injswpj";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|