5557ff764c
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
31 lines
824 B
Nix
31 lines
824 B
Nix
{ lib, mkDerivation, fetchFromGitHub, ghc }:
|
|
|
|
mkDerivation rec {
|
|
pname = "cubical";
|
|
version = "unstable-2023-02-09";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = pname;
|
|
owner = "agda";
|
|
rev = "6b1ce0b67fd94693c1a3e340c8e8765380de0edc";
|
|
hash = "sha256-XRCaW94oAgy2GOnFiI9c5A8mEx7AzlbT4pFd+PMmc9o=";
|
|
};
|
|
|
|
# The cubical library has several `Everything.agda` files, which are
|
|
# compiled through the make file they provide.
|
|
nativeBuildInputs = [ ghc ];
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
make
|
|
runHook postBuild
|
|
'';
|
|
|
|
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 ncfavier ];
|
|
};
|
|
}
|