29 lines
785 B
Nix
29 lines
785 B
Nix
{ lib, mkDerivation, fetchFromGitHub, standard-library }:
|
|
|
|
mkDerivation rec {
|
|
version = "0.1";
|
|
pname = "agda-categories";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "agda";
|
|
repo = "agda-categories";
|
|
rev = "release/v${version}";
|
|
sha256 = "0m4pjy92jg6zfziyv0bxv5if03g8k4413ld8c3ii2xa8bzfn04m2";
|
|
};
|
|
|
|
buildInputs = [ standard-library ];
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "A new Categories library";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
# agda categories takes a lot of memory to build.
|
|
# This can be removed if this is eventually fixed upstream.
|
|
hydraPlatforms = [];
|
|
# Waiting for release 0.2 for this to work
|
|
broken = true;
|
|
maintainers = with maintainers; [ alexarice turion ];
|
|
};
|
|
}
|