agdaPackages.cubical: init at 0.2 (#76994)

Co-authored-by: Alex Rice <alexrice999@hotmail.co.uk>
This commit is contained in:
Ryan Orendorff 2020-05-19 11:20:35 -06:00 committed by GitHub
parent 698e71db2c
commit f7ad47a8f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 0 deletions

View file

@ -6700,6 +6700,12 @@
githubId = 889991;
name = "Ryan Artecona";
};
ryanorendorff = {
email = "12442942+ryanorendorff@users.noreply.github.com";
github = "ryanorendorff";
githubId = 12442942;
name = "Ryan Orendorff";
};
ryansydnor = {
email = "ryan.t.sydnor@gmail.com";
github = "ryansydnor";

View file

@ -0,0 +1,33 @@
{ lib, mkDerivation, fetchFromGitHub, ghc, glibcLocales }:
mkDerivation rec {
# Version 0.2 is meant to be used with the Agda 2.6.1 compiler.
pname = "cubical";
version = "0.2";
src = fetchFromGitHub {
repo = pname;
owner = "agda";
rev = "v${version}";
sha256 = "07qlp2f189jvzbn3aqvpqk2zxpkmkxhhkjsn62iq436kxqj3z6c2";
};
LC_ALL = "en_US.UTF-8";
# The cubical library has several `Everything.agda` files, which are
# compiled through the make file they provide.
nativeBuildInputs = [ ghc glibcLocales ];
buildPhase = ''
make
'';
meta = with lib; {
description =
"A cubical type theory library for use with the Agda compiler";
homepage = src.meta.homepage;
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ alexarice ryanorendorff ];
};
}

View file

@ -22,5 +22,7 @@ let
agda-prelude = callPackage ../development/libraries/agda/agda-prelude { };
agda-categories = callPackage ../development/libraries/agda/agda-categories { };
cubical = callPackage ../development/libraries/agda/cubical { };
};
in mkAgdaPackages Agda