bsc-leon-vatthauer/agda/flake.nix

16 lines
432 B
Nix
Raw Permalink Normal View History

2023-10-28 12:34:15 +02:00
{
description = "Flake for compiling my bachelor's thesis";
2024-01-24 14:04:07 +01:00
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
2023-10-28 12:34:15 +02:00
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}