1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; }; outputs = { nixpkgs, ... }: let pkgs = import nixpkgs { system = "x86_64-linux"; }; in { devShell.x86_64-linux = pkgs.mkShell { buildInputs = with pkgs; [ gnuplot cargo ]; }; }; }