567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
31 lines
586 B
Nix
31 lines
586 B
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "cubical";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "cubical";
|
|
owner = "agda";
|
|
rev = "v${version}";
|
|
hash = "sha256-Lmzofq2rKFmfsAoH3zIFB2QLeUhFmIO44JsF+dDrubw=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Cubical type theory library for use with the Agda compiler";
|
|
homepage = src.meta.homepage;
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [
|
|
alexarice
|
|
ryanorendorff
|
|
ncfavier
|
|
phijor
|
|
];
|
|
};
|
|
}
|