mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-30 18:19:12 +00:00
13 lines
283 B
Nix
13 lines
283 B
Nix
{ dockerTools, foodogsquaredLib, puredata-with-plugins, processing, zexy, shader-slang, shaderc }:
|
|
|
|
foodogsquaredLib.buildDockerImage rec {
|
|
name = "fds-creatives";
|
|
tag = name;
|
|
contents = [
|
|
(puredata-with-plugins [ zexy ])
|
|
shader-slang
|
|
processing
|
|
shaderc
|
|
];
|
|
}
|