Minimal Imperative Parsing Library | https://docs.rs/mipl
1{
2 description = "mipl dev flake";
3
4 inputs = {
5 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
6 };
7
8 outputs = { self, nixpkgs, ... }:
9 let
10 system = "x86_64-linux";
11 pkgs = import nixpkgs {
12 inherit system;
13 };
14 in
15 {
16 devShells.${system}.default = pkgs.mkShell {
17 packages = with pkgs; [
18 bash
19 rustc
20 cargo
21 ];
22 };
23 };
24}