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: 4f8419b0b8d1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5693c5da8efb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 14, 2018

  1. fricas: 1.3.2 -> 1.3.3

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    - ran `/nix/store/gbxxlzids227g9xaiqyqp2hp8ccmkfvq-fricas-1.3.3/bin/fricas -h` got 0 exit code
    - ran `/nix/store/gbxxlzids227g9xaiqyqp2hp8ccmkfvq-fricas-1.3.3/bin/fricas -h` and found version 1.3.3
    - ran `/nix/store/gbxxlzids227g9xaiqyqp2hp8ccmkfvq-fricas-1.3.3/bin/efricas --help` got 0 exit code
    - found 1.3.3 with grep in /nix/store/gbxxlzids227g9xaiqyqp2hp8ccmkfvq-fricas-1.3.3
    ryantm committed Mar 14, 2018
    Copy the full SHA
    bf06f44 View commit details

Commits on Mar 17, 2018

  1. Merge pull request #36986 from ryantm/auto-update/fricas

    fricas: 1.3.2 -> 1.3.3
    gebner authored Mar 17, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5693c5d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/science/math/fricas/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/science/math/fricas/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, fetchurl, sbcl, libX11, libXpm, libICE, libSM, libXt, libXau, libXdmcp }:

let
version = "1.3.2";
version = "1.3.3";
name = "fricas-" + version;
in
stdenv.mkDerivation {
inherit name;

src = fetchurl {
url = "http://sourceforge.net/projects/fricas/files/fricas/${version}/${name}-full.tar.bz2";
sha256 = "17a3vfvsn2idydqslf5r6z3sk6a5bdgj6z1n3dmnwmpkc4z152vr";
sha256 = "1avp9mbl5yn192c7kz5c2d18k33hay9lwii363b0v5hj3qgq2hhl";
};

buildInputs = [ sbcl libX11 libXpm libICE libSM libXt libXau libXdmcp ];