this repo has no description
at main 610 B view raw
1{ 2 description = "A Nix-flake-based Janet development environment"; 3 4 inputs = { 5 nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 6 7 flake-utils.url = "github:numtide/flake-utils"; 8 }; 9 10 outputs = { self, nixpkgs, flake-utils }: 11 flake-utils.lib.eachDefaultSystem (system: 12 let 13 inherit (pkgs.lib) optional optionals; 14 15 pkgs = import nixpkgs { inherit system; }; 16 in 17 { 18 devShells.default = pkgs.mkShell { 19 buildInputs = with pkgs; [ 20 janet 21 sqlite 22 jpm 23 ]; 24 }; 25 } 26 ); 27}