From daa24581fde289f8d384cc26567f3e718735d803 Mon Sep 17 00:00:00 2001 From: Hyperbel <25338593+hyperbel@users.noreply.github.com> Date: Sun, 25 Dec 2022 17:23:07 +0100 Subject: [PATCH] reproducable env with nix --- shell.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..5fae8cd --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-22.11.tar.gz") {} }: +pkgs.mkShell { + packages = [ + (pkgs.python3.withPackages (ps: [ + ps.flask + ps.qrcode + ])) + + pkgs.curl + pkgs.vim + pkgs.sqlite + pkgs.tmux + ]; +}