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

Commits on Apr 24, 2020

  1. acl2: 8.2 -> 8.3

    kini committed Apr 24, 2020
    Copy the full SHA
    7fb25b9 View commit details
  2. Merge pull request #85825 from kini/acl2-8.3

    acl2: 8.2 -> 8.3
    7c6f434c authored Apr 24, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e170e0e View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 pkgs/development/interpreters/acl2/default.nix
9 changes: 5 additions & 4 deletions pkgs/development/interpreters/acl2/default.nix
Original file line number Diff line number Diff line change
@@ -4,15 +4,15 @@

let hashes = {
"8.0" = "1x1giy2c1y6krg3kf8pf9wrmvk981shv0pxcwi483yjqm90xng4r";
"8.2" = "1x33kv6w9cbqzvyrihn61pzmqlvnk3drm8ksd5v0arg38i95awi3";
"8.3" = "0c0wimaf16nrr3d6cxq6p7nr7rxffvpmn66hkpwc1m6zpcipf0y5";
};
revs = {
"8.0" = "8.0";
"8.2" = "8.2";
"8.3" = "8.3";
};
in stdenv.mkDerivation rec {
pname = "acl2";
version = "8.2";
version = "8.3";

src = fetchFromGitHub {
owner = "acl2-devel";
@@ -72,6 +72,7 @@ in stdenv.mkDerivation rec {
#[ free bsd3 mit gpl2 llgpl21 cc0 publicDomain ];
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ kini raskin ];
platforms = stdenv.lib.platforms.linux;
platforms = stdenv.lib.platforms.all;
broken = stdenv.isAarch64 && stdenv.isLinux;
};
}