mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
63 lines
1.7 KiB
Nix
63 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, SDL2
|
|
, libiconv
|
|
, Cocoa
|
|
, autoSignDarwinBinariesHook
|
|
, libGLSupported ? lib.elem stdenv.hostPlatform.system lib.platforms.mesaPlatforms
|
|
, openglSupport ? libGLSupported
|
|
, libGL
|
|
, libGLU
|
|
}:
|
|
|
|
let
|
|
inherit (lib) optionals makeLibraryPath;
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "SDL_compat";
|
|
version = "1.2.68";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libsdl-org";
|
|
repo = "sdl12-compat";
|
|
rev = "release-" + version;
|
|
hash = "sha256-f2dl3L7/qoYNl4sjik1npcW/W09zsEumiV9jHuKnUmM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ]
|
|
++ optionals (stdenv.isDarwin && stdenv.isAarch64) [ autoSignDarwinBinariesHook ];
|
|
|
|
propagatedBuildInputs = [ SDL2 ]
|
|
++ optionals stdenv.hostPlatform.isDarwin [ libiconv Cocoa ]
|
|
++ optionals openglSupport [ libGL libGLU ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
setupHook = ../SDL/setup-hook.sh;
|
|
|
|
postFixup = ''
|
|
for lib in $out/lib/*${stdenv.hostPlatform.extensions.sharedLibrary}* ; do
|
|
if [[ -L "$lib" ]]; then
|
|
${if stdenv.hostPlatform.isDarwin then ''
|
|
install_name_tool ${lib.strings.concatMapStrings (x: " -add_rpath ${makeLibraryPath [x]} ") propagatedBuildInputs} "$lib"
|
|
'' else ''
|
|
patchelf --set-rpath "$(patchelf --print-rpath $lib):${makeLibraryPath propagatedBuildInputs}" "$lib"
|
|
''}
|
|
fi
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A cross-platform multimedia library - build SDL 1.2 applications against 2.0";
|
|
mainProgram = "sdl-config";
|
|
homepage = "https://www.libsdl.org/";
|
|
license = licenses.zlib;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|