blob: 976d841578365bbc9708f857deb40948d9188a2e (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
mkDerivation,
fetchFromGitHub,
nixosTests,
}:
mkDerivation rec {
pname = "standard-library";
version = "2.2-unstable-2025-07-03";
src = fetchFromGitHub {
repo = "agda-stdlib";
owner = "agda";
rev = "6f8af9452e7fac27bc3b3ad068793b538f07668e";
hash = "sha256-LD6KasmQ9ZHRNQJ0N4wjyc6JiSkZpmyqQq9B0Wta1n0=";
};
passthru.tests = { inherit (nixosTests) agda; };
meta = with lib; {
homepage = "https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary";
description = "Standard library for use with the Agda compiler";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with maintainers; [
jwiegley
mudri
alexarice
turion
];
};
}
|