agda-categories: init at 0.1
This commit is contained in:
parent
c2814be3a3
commit
6c1cdedb6d
28
pkgs/development/libraries/agda/agda-categories/default.nix
Normal file
28
pkgs/development/libraries/agda/agda-categories/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -20,5 +20,7 @@ let
|
||||
iowa-stdlib = callPackage ../development/libraries/agda/iowa-stdlib { };
|
||||
|
||||
agda-prelude = callPackage ../development/libraries/agda/agda-prelude { };
|
||||
|
||||
agda-categories = callPackage ../development/libraries/agda/agda-categories { };
|
||||
};
|
||||
in mkAgdaPackages Agda
|
||||
|
Loading…
Reference in New Issue
Block a user