From 28d412ccfe48c2fc25fe5240f03e7996ec6d3882 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Wed, 16 Jul 2025 21:05:21 +0200 Subject: Reproducible shell 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..bf14b7f --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +let + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-25.05"; + pkgs = import nixpkgs { config = {}; overlays = []; }; +in + +pkgs.mkShellNoCC { + packages = with pkgs; [ + pandoc + hunspell + (diffoscope.override { enableBloat = false; }) + ]; + + LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive"; +} -- cgit v1.2.3