mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-24 15:07:37 +03:00
ca95781a74
It supports many more platforms, excerpt from the README: > Supported platforms: > > Windows: x86, x86_64 > Mac OS: x86, x86_64, AArch64, PowerPC32 > Linux: x86, x86_64, ARMv6, AArch64, PowerPC32 > FreeBSD: x86, x86_64, ARMv6, AArch64, PowerPC32 > OpenBSD: x86, x86_64, ARMv6, AArch64, PowerPC32 > NetBSD: x86, x86_64, ARMv6, AArch64, PowerPC32 > Solaris: x86, x86_64 > Android: ARMv7, AArch64 > iOS: AArch64 Link to the fork: https://github.com/racket/ChezScheme
56 lines
2.1 KiB
Nix
56 lines
2.1 KiB
Nix
{
|
|
description = "Idris2 flake";
|
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
inputs.idris-emacs-src = {
|
|
url = "github:redfish64/idris2-mode";
|
|
flake = false;
|
|
};
|
|
# FIXME: Remove this when https://github.com/NixOS/nixpkgs/pull/131833 gets merged
|
|
inputs.nixpkgs-chez-racket.url = "github:L-as/nixpkgs?ref=chez-racket";
|
|
|
|
outputs = { self, nixpkgs, nixpkgs-chez-racket, flake-utils, idris-emacs-src }:
|
|
let
|
|
idris2-version = "0.4.0";
|
|
lib = import ./nix/lib.nix;
|
|
sys-agnostic = rec {
|
|
templates.pkg = {
|
|
path = ./nix/templates/pkg;
|
|
description = "A custom Idris 2 package";
|
|
};
|
|
templates.pkgWithDeps = {
|
|
path = ./nix/templates/pkgWithDeps;
|
|
description = "A custom Idris 2 package with dependencies";
|
|
};
|
|
defaultTemplate = templates.pkg;
|
|
version = idris2-version;
|
|
};
|
|
per-system = { config ? { }, overlays ? [ ] }: system:
|
|
let
|
|
pkgs = import nixpkgs { inherit config system overlays; };
|
|
chez = if system == "x86_64-linux"
|
|
then pkgs.chez
|
|
else pkgs.callPackage "${nixpkgs-chez-racket}/pkgs/development/compilers/chez-racket" { inherit (pkgs.darwin) cctools; };
|
|
idris2Pkg = pkgs.callPackage ./nix/package.nix {
|
|
inherit idris2-version chez;
|
|
srcRev = self.shortRev or "dirty";
|
|
};
|
|
buildIdris = { projectName, src, idrisLibraries }:
|
|
pkgs.callPackage ./nix/buildIdris.nix
|
|
{ inherit src projectName idrisLibraries idris2-version; idris2 = idris2Pkg; };
|
|
in rec {
|
|
checks = import ./nix/test.nix {
|
|
inherit (pkgs) system stdenv runCommand lib;
|
|
inherit nixpkgs flake-utils;
|
|
idris = self;
|
|
};
|
|
packages =
|
|
{ idris2 = idris2Pkg; }
|
|
// (import ./nix/text-editor.nix { inherit pkgs idris-emacs-src idris2Pkg; });
|
|
inherit buildIdris;
|
|
defaultPackage = packages.idris2;
|
|
};
|
|
in
|
|
lib.mkOvrOptsFlake (opts: flake-utils.lib.eachDefaultSystem (per-system opts) // sys-agnostic);
|
|
}
|