docent/flake.nix

30 lines
593 B
Nix
Raw Permalink Normal View History

2026-05-05 09:33:51 -05:00
{
description = "Docent museum audio guide PWA";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{ self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
nodejs_22
go
ffmpeg
imagemagick
yq-go
2026-05-26 11:52:32 -05:00
jq
2026-05-05 09:33:51 -05:00
];
};
}
);
}