2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
31 lines
779 B
Nix
31 lines
779 B
Nix
{ lib, mkDerivation, fetchFromGitHub, ghc }:
|
|
|
|
mkDerivation rec {
|
|
pname = "cubical";
|
|
version = "0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = pname;
|
|
owner = "agda";
|
|
rev = "v${version}";
|
|
hash = "sha256-2quAZ/j7kQaFkh9W5Bj1y7YQj9BT7FwHqVWyj8T4AH8=";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|