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

Commits on Nov 2, 2018

  1. yices: 2.6.0 -> 2.6.1

    kquick committed Nov 2, 2018
    Copy the full SHA
    411c665 View commit details

Commits on Nov 3, 2018

  1. Merge pull request #49660 from kquick/yices-2.6.1

    yices: 2.6.0 -> 2.6.1
    markuskowa authored Nov 3, 2018
    Copy the full SHA
    759c26b View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/science/logic/yices/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/science/logic/yices/default.nix
Original file line number Diff line number Diff line change
@@ -2,12 +2,12 @@

stdenv.mkDerivation rec {
name = "yices-${version}";
version = "2.6.0";
version = "2.6.1";

src = fetchurl {
url = "https://github.com/SRI-CSL/yices2/archive/Yices-${version}.tar.gz";
name = "${name}-src.tar.gz";
sha256 = "10ikq7ib8jhx7hlxfm6mp5qg6r8dflqs8242q5zaicn80qixpm12";
sha256 = "14xvflv14qn8ssm8rklvckp6l1q94vn49qz2snz73j40nwzshaww";
};

nativeBuildInputs = [ autoreconfHook ];