aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2025-07-16 21:16:37 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2025-07-16 21:16:37 +0200
commit0f742d6e44d1a2b48e1b28132043efec3428ca25 (patch)
tree7247141bc10f11322f2c002e9d908cdd065f578f /flake.nix
parent8612f56ba8114cc781d1538a487cc559edcb596b (diff)
downloadconstance-ring-0f742d6e44d1a2b48e1b28132043efec3428ca25.tar.gz
constance-ring-0f742d6e44d1a2b48e1b28132043efec3428ca25.tar.bz2
constance-ring-0f742d6e44d1a2b48e1b28132043efec3428ca25.tar.xz
constance-ring-0f742d6e44d1a2b48e1b28132043efec3428ca25.zip
nix
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..5b83fd0
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,18 @@
+{
+ inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
+
+ outputs = { self, nixpkgs, ... }:
+ let pkgs = import nixpkgs { system = "x86_64-linux"; };
+ in
+ {
+ devShells."x86_64-linux".ci = with pkgs; mkShell {
+ buildInputs = [
+ pandoc
+ hunspell
+ (diffoscope.override { enableBloat = false; })
+ ];
+
+ LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
+ };
+ };
+}