2025-07-07 09:42:04 -07:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
utils.url = "github:numtide/flake-utils";
|
|
|
|
};
|
2025-08-11 22:38:02 -07:00
|
|
|
outputs = inputs: inputs.utils.lib.eachDefaultSystem (system:
|
|
|
|
with inputs.nixpkgs.legacyPackages.${system}; {
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
|
|
buildInputs = [
|
|
|
|
pkgs.nodejs_24 # runtime
|
|
|
|
pkgs.deno # formatter
|
|
|
|
(pkgs.ffmpeg.override {
|
|
|
|
withOpus = true;
|
|
|
|
withSvtav1 = true;
|
|
|
|
withJxl = true;
|
|
|
|
withWebp = true;
|
|
|
|
})
|
|
|
|
pkgs.rsync
|
|
|
|
];
|
|
|
|
};
|
|
|
|
devShells.min = pkgs.mkShell {
|
|
|
|
buildInputs = [
|
|
|
|
pkgs.nodejs_24 # runtime
|
|
|
|
pkgs.deno # formatter
|
|
|
|
pkgs.rsync
|
|
|
|
];
|
|
|
|
};
|
|
|
|
});
|
2025-07-07 09:42:04 -07:00
|
|
|
}
|