22 lines
454 B
Nix
22 lines
454 B
Nix
{
|
|
description = "My motion canvas development shell";
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
};
|
|
outputs = {nixpkgs, ...}: let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
};
|
|
in {
|
|
devShells."${system}" = {
|
|
default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs_20
|
|
nodePackages.npm
|
|
ffmpeg
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|