universeair: minor changes

This commit is contained in:
2025-04-25 18:59:25 -04:00
parent 92abcf170b
commit dc8108a8e4
2 changed files with 19 additions and 0 deletions

View File

@@ -141,6 +141,7 @@ in
environment.systemPackages = (with pkgs; [
me-emacs
svgbob
(aspellWithDicts (p: with p;[
en
en-computers

View File

@@ -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;
}))