Skip to content

Commit 209483a

Browse files
authored
agdaPackages.agda2hs: init at 1.3-unstable-2025-07-25 (NixOS#447925)
2 parents 60c867c + 87eee1f commit 209483a

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
lib,
3+
mkDerivation,
4+
haskellPackages,
5+
}:
6+
7+
mkDerivation {
8+
pname = "agda2hs-base";
9+
10+
inherit (haskellPackages.agda2hs) src version;
11+
12+
sourceRoot = "source/lib/base";
13+
14+
libraryFile = "base.agda-lib";
15+
16+
meta = with lib; {
17+
homepage = "https://github.com/agda/agda2hs";
18+
description = "Standard library for compiling Agda code to readable Haskell";
19+
license = lib.licenses.mit;
20+
platforms = lib.platforms.unix;
21+
maintainers = with maintainers; [
22+
wrvsrx
23+
];
24+
};
25+
}

pkgs/top-level/agda-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ let
3636

3737
agda-categories = callPackage ../development/libraries/agda/agda-categories { };
3838

39+
agda2hs-base = callPackage ../development/libraries/agda/agda2hs-base { };
40+
3941
cubical = callPackage ../development/libraries/agda/cubical { };
4042

4143
cubical-mini = callPackage ../development/libraries/agda/cubical-mini { };

0 commit comments

Comments
 (0)