{ description = "vhack.eu's soft fork of LibRedirect"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # inputs for following systems = { url = "github:nix-systems/x86_64-linux"; # only evaluate for this system }; flake-utils = { url = "github:numtide/flake-utils"; inputs = { systems.follows = "systems"; }; }; }; outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages."${system}"; in { devShells.default = pkgs.mkShell { packages = [ pkgs.nodejs pkgs.nodePackages_latest.web-ext pkgs.nodePackages_latest.prettier ]; }; }); } # vim: ts=2