depot/third_party/nixpkgs/pkgs/development/libraries/agda/cubical/default.nix

40 lines
817 B
Nix

{
lib,
mkDerivation,
fetchFromGitHub,
ghc,
}:
mkDerivation rec {
pname = "cubical";
version = "0.7";
src = fetchFromGitHub {
repo = pname;
owner = "agda";
rev = "v${version}";
hash = "sha256-oLpKRWfQqb6CIscC2XM0ia9HJ8edJFHoPeql3kfvyrA=";
};
# 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
phijor
];
};
}