From 1b0dc9f7afc9ddc214cfe438b0ec23834e1b1134 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 26 Sep 2023 22:55:07 +0800 Subject: [PATCH] shells/creatives: init --- shells/creatives.nix | 19 +++++++++++++++++++ shells/default.nix | 1 + 2 files changed, 20 insertions(+) create mode 100644 shells/creatives.nix 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 { };