504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
30 lines
1,007 B
Nix
30 lines
1,007 B
Nix
{ lib, mkDerivation, fetchFromGitHub, ghcWithPackages, nixosTests }:
|
|
|
|
mkDerivation rec {
|
|
pname = "standard-library";
|
|
version = "2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "agda-stdlib";
|
|
owner = "agda";
|
|
rev = "v${version}";
|
|
hash = "sha256-TjGvY3eqpF+DDwatT7A78flyPcTkcLHQ1xcg+MKgCoE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ];
|
|
preConfigure = ''
|
|
runhaskell GenerateEverything.hs --include-deprecated
|
|
# We will only build/consider Everything.agda, in particular we don't want Everything*.agda
|
|
# do be copied to the store.
|
|
rm EverythingSafe.agda
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) agda; };
|
|
meta = with lib; {
|
|
homepage = "https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary";
|
|
description = "A standard library for use with the Agda compiler";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with maintainers; [ jwiegley mudri alexarice turion ];
|
|
};
|
|
}
|