2021-01-15 20:20:52 +03:00
|
|
|
{
|
|
|
|
description = "Idris2 flake";
|
|
|
|
|
2021-03-15 17:21:50 +03:00
|
|
|
inputs.flake-utils.url = github:numtide/flake-utils;
|
|
|
|
inputs.idris-emacs-src = {
|
|
|
|
url = github:redfish64/idris2-mode;
|
|
|
|
flake = false;
|
2021-01-15 20:20:52 +03:00
|
|
|
};
|
2021-03-15 17:21:50 +03:00
|
|
|
|
|
|
|
outputs = { self, nixpkgs, flake-utils, idris-emacs-src }:
|
|
|
|
let idris2-version = "0.3.0";
|
|
|
|
in flake-utils.lib.eachDefaultSystem (system:
|
|
|
|
let pkgs = import nixpkgs { inherit system; };
|
|
|
|
idris2Pkg = pkgs.callPackage ./nix/package.nix { inherit idris2-version; };
|
|
|
|
text-editor = import ./nix/text-editor.nix { inherit pkgs idris-emacs-src idris2Pkg; };
|
|
|
|
buildIdrisPkg = { projectName, src, idrisLibraries }:
|
|
|
|
pkgs.callPackage ./nix/buildIdris.nix
|
|
|
|
{ inherit src projectName idrisLibraries idris2-version; idris2 = idris2Pkg; };
|
|
|
|
in if system != "aarch64-linux" then rec {
|
|
|
|
checks = with pkgs; import ./nix/test.nix
|
|
|
|
{ inherit nixpkgs flake-utils system stdenv runCommand lib; idris = self; };
|
|
|
|
packages = rec {
|
|
|
|
idris2 = idris2Pkg;
|
|
|
|
} // text-editor;
|
|
|
|
buildIdris = buildIdrisPkg;
|
|
|
|
defaultPackage = packages.idris2;
|
|
|
|
} else {}) // 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;
|
|
|
|
};
|
2021-01-15 20:20:52 +03:00
|
|
|
}
|