571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
72 lines
1.2 KiB
Nix
72 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, cmake
|
|
, pkg-config
|
|
, boost
|
|
, curl
|
|
, SDL2
|
|
, SDL2_image
|
|
, libSM
|
|
, libXext
|
|
, libpng
|
|
, freetype
|
|
, libGLU
|
|
, libGL
|
|
, glew
|
|
, glm
|
|
, openal
|
|
, libogg
|
|
, libvorbis
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "supertux";
|
|
version = "0.6.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
|
|
sha256 = "1xkr3ka2sxp5s0spp84iv294i29s1vxqzazb6kmjc0n415h0x57p";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed '1i#include <memory>' -i external/partio_zip/zip_manager.hpp # gcc12
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
buildInputs = [
|
|
boost
|
|
curl
|
|
SDL2
|
|
SDL2_image
|
|
libSM
|
|
libXext
|
|
libpng
|
|
freetype
|
|
libGL
|
|
libGLU
|
|
glew
|
|
glm
|
|
openal
|
|
libogg
|
|
libvorbis
|
|
];
|
|
|
|
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
|
|
|
|
postInstall = ''
|
|
mkdir $out/bin
|
|
ln -s $out/games/supertux2 $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Classic 2D jump'n run sidescroller game";
|
|
homepage = "https://supertux.github.io/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = with platforms; linux;
|
|
mainProgram = "supertux2";
|
|
};
|
|
}
|