diff --git a/shells/creatives.nix b/shells/creatives.nix new file mode 100644 index 00000000..1dd41517 --- /dev/null +++ b/shells/creatives.nix @@ -0,0 +1,19 @@ +# Trying to be creative with coding while endlessly referring to some tutorials +# on the internet. +{ mkShell +, supercollider +, bonzomatic +, processing +, puredata +, shaderc +}: + +mkShell { + packages = [ + supercollider # It's a super tool for music who compensates the lack of musical talent for coding instead. + bonzomatic # Shadertoy for desktop bozos. + processing # All aboard the creative coding train. + puredata # Pure unadulterated data: all of them. + shaderc # Tools to be a shady person. + ]; +} diff --git a/shells/default.nix b/shells/default.nix index 80803574..e03acd76 100644 --- a/shells/default.nix +++ b/shells/default.nix @@ -2,6 +2,7 @@ with pkgs; { cloud = callPackage ./cloud.nix { }; + creatives = callPackage ./creatives.nix { }; flatpak = callPackage ./flatpak.nix { }; gnu = callPackage ./gnu.nix { }; gnome = callPackage ./gnome.nix { };