From dc8108a8e4ffd6a0bae5c65d7db91e6aaa23f988 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 25 Apr 2025 18:59:25 -0400 Subject: [PATCH] universeair: minor changes --- machines/universeair/configuration.nix | 1 + machines/universeair/libresprite_TODO_PR.nix | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 machines/universeair/libresprite_TODO_PR.nix diff --git a/machines/universeair/configuration.nix b/machines/universeair/configuration.nix index 668ab89..459adef 100644 --- a/machines/universeair/configuration.nix +++ b/machines/universeair/configuration.nix @@ -141,6 +141,7 @@ in environment.systemPackages = (with pkgs; [ me-emacs + svgbob (aspellWithDicts (p: with p;[ en en-computers diff --git a/machines/universeair/libresprite_TODO_PR.nix b/machines/universeair/libresprite_TODO_PR.nix new file mode 100644 index 0000000..222963f --- /dev/null +++ b/machines/universeair/libresprite_TODO_PR.nix @@ -0,0 +1,18 @@ + (libresprite.overrideAttrs (old: { + src = pkgs.fetchFromGitHub { + owner = "LibreSprite"; + repo = "LibreSprite"; + rev = "c99d3666b17ff731824e3eccc79cf3ec48564ad5"; + fetchSubmodules = true; + sha256 = "sha256-mdMdHQvl6Mt0oisZ4c/Wk6dvklq3Iyz05brbFxSIaj0="; + }; + patches = []; + buildInputs = old.buildInputs ++ (with pkgs; [ + libarchive + tinyxml-2 + ]); + postPatch = '' + sed -i -e 's/if(''${CMAKE_SYSTEM_NAME} MATCHES "Darwin")/if(FALSE)/' CMakeLists.txt + ''; + meta.broken = false; + }))