Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b7c736037452
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 65c327325086
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 22, 2018

  1. form: init at 4.2.0 (#40693)

    veprbl authored and xeji committed May 22, 2018
    Copy the full SHA
    65c3273 View commit details
Showing with 24 additions and 0 deletions.
  1. +22 −0 pkgs/applications/science/math/form/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
22 changes: 22 additions & 0 deletions pkgs/applications/science/math/form/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, fetchurl, gmp, zlib }:

stdenv.mkDerivation rec {
version = "4.2.0";
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.0/form-4.2.0.tar.gz";
sha256 = "19528aphn4hvm151lyyhd7wz0bp2s3rla8jv6s7d8jwfp5ljzysm";
};

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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -20461,6 +20461,8 @@ with pkgs;
texinfo = texinfo4;
};

form = callPackage ../applications/science/math/form { };

fricas = callPackage ../applications/science/math/fricas { };

gap = callPackage ../applications/science/math/gap { };