Merge staging-next into staging

This commit is contained in:
nixpkgs-ci[bot]
2025-08-13 18:07:06 +00:00
committed by GitHub
2 changed files with 5 additions and 11 deletions
@@ -6,21 +6,15 @@
mkDerivation rec {
pname = "cubical";
version = "0.8";
version = "0.9";
src = fetchFromGitHub {
repo = pname;
owner = "agda";
rev = "v${version}";
hash = "sha256-KwwN2g2naEo4/rKTz2L/0Guh5LxymEYP53XQzJ6eMjM=";
hash = "sha256-Lmzofq2rKFmfsAoH3zIFB2QLeUhFmIO44JsF+dDrubw=";
};
postPatch = ''
# This imports the Everything files, which we don't generate.
# TODO: remove for the next release
rm -rf Cubical/README.agda Cubical/Talks/EPA2020.agda
'';
meta = with lib; {
description = "Cubical type theory library for use with the Agda compiler";
homepage = src.meta.homepage;
@@ -7,13 +7,13 @@
mkDerivation rec {
pname = "standard-library";
version = "2.2-unstable-2025-07-03";
version = "2.3";
src = fetchFromGitHub {
repo = "agda-stdlib";
owner = "agda";
rev = "6f8af9452e7fac27bc3b3ad068793b538f07668e";
hash = "sha256-LD6KasmQ9ZHRNQJ0N4wjyc6JiSkZpmyqQq9B0Wta1n0=";
rev = "v${version}";
hash = "sha256-JOeoek6OfyIk9vwTj5QUJU6LnRzwfiG0e0ysW6zbhZ8=";
};
passthru.tests = { inherit (nixosTests) agda; };