Unverified Commit 55499d86 authored by Naïm Favier's avatar Naïm Favier Committed by GitHub
Browse files

Merge pull request #288262 from ncfavier/cubical

agdaPackages.cubical: 0.6 -> 0.7
parents 53312e40 54c160c7
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -14920,6 +14920,12 @@
      fingerprint = "3AC6 F170 F011 33CE 393B  CD94 BE94 8AFD 7E78 73BE";
    }];
  };
  phijor = {
    name = "Philipp Joram";
    email = "nixpkgs@phijor.me";
    github = "phijor";
    githubId = 10487782;
  };
  philandstuff = {
    email = "philip.g.potter@gmail.com";
    github = "philandstuff";
+3 −3
Original line number Diff line number Diff line
@@ -2,13 +2,13 @@

mkDerivation rec {
  pname = "cubical";
  version = "0.6";
  version = "0.7";

  src = fetchFromGitHub {
    repo = pname;
    owner = "agda";
    rev = "v${version}";
    hash = "sha256-2quAZ/j7kQaFkh9W5Bj1y7YQj9BT7FwHqVWyj8T4AH8=";
    hash = "sha256-oLpKRWfQqb6CIscC2XM0ia9HJ8edJFHoPeql3kfvyrA=";
  };

  # The cubical library has several `Everything.agda` files, which are
@@ -26,6 +26,6 @@ mkDerivation rec {
    homepage = src.meta.homepage;
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ alexarice ryanorendorff ncfavier ];
    maintainers = with maintainers; [ alexarice ryanorendorff ncfavier phijor ];
  };
}