eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, wrapGAppsHook3
|
|
|
|
, curl
|
|
, freetype
|
|
, glew
|
|
, gtk3
|
|
, libGL
|
|
, libjpeg
|
|
, libpng
|
|
, SDL2
|
|
, SDL2_gfx
|
|
, SDL2_image
|
|
, SDL2_mixer
|
|
, SDL2_ttf
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "principia";
|
|
version = "2024.02.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bithack";
|
|
repo = "principia";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-L37H261IGCcH2K7RhX8iTdHRkle83vKhgpyssRmSKN0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
freetype
|
|
glew
|
|
gtk3
|
|
libGL
|
|
libjpeg
|
|
libpng
|
|
SDL2
|
|
SDL2_gfx
|
|
SDL2_image
|
|
SDL2_mixer
|
|
SDL2_ttf
|
|
];
|
|
|
|
cmakeFlags = [
|
|
# Remove when https://github.com/NixOS/nixpkgs/issues/144170 is fixed
|
|
(lib.cmakeFeature "CMAKE_INSTALL_BINDIR" "bin")
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://principia-web.se/wiki/Changelog#${lib.replaceStrings ["."] ["-"] finalAttrs.version}";
|
|
description = "Physics-based sandbox game";
|
|
mainProgram = "principia";
|
|
homepage = "https://principia-web.se/";
|
|
downloadPage = "https://principia-web.se/download";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.fgaz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|