2022-05-04 11:09:49 -04:00
|
|
|
{ description = "quox: quantitative extensional type theory";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
idris2-pkgs.url = "github:claymager/idris2-pkgs";
|
|
|
|
nixpkgs.follows = "idris2-pkgs/nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs, idris2-pkgs, flake-utils }:
|
|
|
|
let systems = [ "x86_64-darwin" "x86_64-linux" "i686-linux" ]; in
|
|
|
|
flake-utils.lib.eachSystem systems (system:
|
|
|
|
let
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
overlays = [ idris2-pkgs.overlay ];
|
|
|
|
};
|
2022-05-06 14:27:45 -04:00
|
|
|
builders = pkgs.idris2-pkgs._builders;
|
2022-05-04 12:35:43 -04:00
|
|
|
|
2022-05-06 14:27:45 -04:00
|
|
|
packages =
|
|
|
|
let inherit (builders) idrisPackage;
|
|
|
|
in rec {
|
|
|
|
quox-lib = idrisPackage ./lib { };
|
|
|
|
quox = idrisPackage ./exe { extraPkgs = packages; };
|
|
|
|
quox-tests = idrisPackage ./tests { extraPkgs = packages; };
|
|
|
|
};
|
2022-05-04 12:35:43 -04:00
|
|
|
|
2022-05-06 14:27:45 -04:00
|
|
|
devShells =
|
|
|
|
let mkDevShell = _: pkg:
|
|
|
|
pkgs.mkShell { buildInputs = [ (builders.devEnv pkg) ]; };
|
|
|
|
in builtins.mapAttrs mkDevShell packages;
|
|
|
|
in {
|
|
|
|
inherit packages devShells;
|
|
|
|
defaultPackage = packages.quox;
|
|
|
|
devShell = devShells.quox-lib;
|
2022-05-04 11:09:49 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|