Merge pull request #95085 from alexarice/agda-prelude-update

agda-prelude: compat-2.6.0 -> compat-2.6.1
This commit is contained in:
Benjamin Hipple 2020-08-10 21:19:27 -04:00 committed by GitHub
commit d4bbe9a3ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,14 @@
{ stdenv, mkDerivation, fetchFromGitHub }:
mkDerivation rec {
version = "compat-2.6.0";
version = "compat-2.6.1";
pname = "agda-prelude";
src = fetchFromGitHub {
owner = "UlfNorell";
repo = "agda-prelude";
rev = version;
sha256 = "0brg61qrf8izqav80qpx77dbdxvlnsxyy0v7hmlrmhg68b5lp38y";
sha256 = "128rbhd32qlq2nq3wgqni4ih58zzwvs9pkn9j8236ycxxp6x81sl";
};
preConfigure = ''
@ -18,15 +18,11 @@ mkDerivation rec {
cd ..
'';
everythingFile = "./Everything.agda";
meta = with stdenv.lib; {
homepage = "https://github.com/UlfNorell/agda-prelude";
description = "Programming library for Agda";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
# broken since Agda 2.6.1
broken = true;
maintainers = with maintainers; [ mudri alexarice turion ];
};
}