Skip to content

Commit

Permalink
nix: Create a flake.nix file
Browse files Browse the repository at this point in the history
This is currently an experimental Nix feature. However, it's already
widely used so it makes sense to offer such a standardized interface.
  • Loading branch information
ibbem committed Apr 17, 2024
1 parent ba2a8f0 commit fa495e3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
outputs = inputs: let
EVPL = import inputs.self {system = "x86_64-linux";};
in {
packages.x86_64-linux.default = EVPL;
overlays.default = final: prev: {
agdaPackages = prev.agdaPackages.overrideScope' (self: super: {
inherit EVPL;
});
};
};
}

0 comments on commit fa495e3

Please sign in to comment.