From 08eb5c464906a29e9f5135e1fb11e872b93746b1 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 1 Apr 2024 12:54:37 +0200 Subject: refactor(templates/unmaintained): Move out of the templates dir Otherwise, the `update_common_files` script will try to instantiate files in there, which is just useless noise. --- templates/unmaintained/nannou/shell.nix | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 templates/unmaintained/nannou/shell.nix (limited to 'templates/unmaintained/nannou') diff --git a/templates/unmaintained/nannou/shell.nix b/templates/unmaintained/nannou/shell.nix deleted file mode 100644 index 6c4550a..0000000 --- a/templates/unmaintained/nannou/shell.nix +++ /dev/null @@ -1,25 +0,0 @@ -# A Creative Coding Framework for Rust. -{ - pkgs ? import {}, - extraPkgs ? [], -}: -pkgs.mkShell { - buildInputs = with pkgs; - [ - cargo - rustc - pkg-config - alsa-lib - cmake - openssl - xorg.libxcb - ] - ++ extraPkgs; - LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [ - xorg.libX11 - xorg.libXcursor - xorg.libXrandr - xorg.libXi - vulkan-loader - ]); -} -- cgit 1.4.1