5557ff764c
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
30 lines
988 B
Nix
30 lines
988 B
Nix
{ lib, mkDerivation, fetchFromGitHub, ghcWithPackages, nixosTests }:
|
|
|
|
mkDerivation rec {
|
|
pname = "standard-library";
|
|
version = "1.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "agda-stdlib";
|
|
owner = "agda";
|
|
rev = "v${version}";
|
|
hash = "sha256-vvbyfC5+Yyx18IDikSbAAcTHHtU6krlz45Fd2YlwsBg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ];
|
|
preConfigure = ''
|
|
runhaskell GenerateEverything.hs
|
|
# 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 ];
|
|
};
|
|
}
|