nixpkgs/pkgs/development/libraries/agda/cubical/default.nix
Shea Levy 36935f9736
agdaPackages.cubical: 0.2 -> 0.3pred5030a9
0.2 does not build with agda 2.6.2
2021-07-23 07:42:26 -04:00

32 lines
823 B
Nix

{ lib, mkDerivation, fetchFromGitHub, ghc, glibcLocales }:
mkDerivation rec {
pname = "cubical";
version = "0.3pred5030a9";
src = fetchFromGitHub {
repo = pname;
owner = "agda";
rev = "d5030a9c89070255fc575add4e9f37b97e6a0c0c";
sha256 = "18achbxap4ikydigmz3m3xjfn3i9dw4rn8yih82vrlc01j02nqpi";
};
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 ];
};
}