3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/agda/standard-library/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
991 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, ghcWithPackages, nixosTests }:
2019-12-29 12:14:16 +00:00
mkDerivation rec {
pname = "standard-library";
version = "1.7.1";
src = fetchFromGitHub {
repo = "agda-stdlib";
owner = "agda";
rev = "v${version}";
sha256 = "0khl12jvknsvjsq3l5cbp2b5qlw983qbymi1dcgfz9z0b92si3r0";
};
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";
2014-11-11 13:20:43 +00:00
description = "A standard library for use with the Agda compiler";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
2020-05-14 20:50:00 +01:00
maintainers = with maintainers; [ jwiegley mudri alexarice turion ];
};
2019-12-29 12:14:16 +00:00
}