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:43:27 -07:00
|
|
|
outputs = inputs: inputs.utils.lib.eachDefaultSystem (system:
|
|
|
|
with inputs.nixpkgs.legacyPackages.${system}; {
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
|
|
buildInputs = [
|
2025-08-14 20:35:33 -07:00
|
|
|
# clover sitegen v3
|
2025-08-11 22:43:27 -07:00
|
|
|
pkgs.nodejs_24 # runtime
|
|
|
|
pkgs.deno # formatter
|
2025-08-14 20:35:33 -07:00
|
|
|
pkgs.python3 # for font subsetting
|
|
|
|
|
|
|
|
# paperclover.net
|
2025-08-11 22:43:27 -07:00
|
|
|
(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
|
|
|
}
|