Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
73 lines
1.3 KiB
Nix
73 lines
1.3 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 = "2025.04.05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bithack";
|
|
repo = "principia";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-cXtc1E4iJf3//UyzZzhky/NV7zk4959xSwGLHdCeyk0=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|