nixpkgs/pkgs/by-name/sm/smpeg/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, SDL, autoconf, automake, libtool, gtk2, m4, pkg-config, libGLU, libGL, makeWrapper }:
stdenv.mkDerivation rec {
pname = "smpeg";
version = "0.4.5";
src = fetchFromGitHub {
owner = "icculus";
repo = "smpeg";
rev = "release_${builtins.replaceStrings ["."] ["_"] version}";
sha256 = "sha256-nq/i7cFGpJXIuTwN/ScLMX7FN8NMdgdsRM9xOD3uycs=";
};
2017-01-18 00:12:49 +00:00
patches = [
./format.patch
./gcc6.patch
2019-01-17 08:26:35 +00:00
./libx11.patch
2021-12-16 07:53:01 +00:00
./gtk.patch
# These patches remove use of the `register` storage class specifier,
# allowing smpeg to build with clang 16, which defaults to C++17.
(fetchpatch {
url = "https://github.com/icculus/smpeg/commit/cc114ba0dd8644c0d6205bbce2384781daeff44b.patch";
hash = "sha256-GxSD82j05pw0r2SxmPYAe/BXX4iUc+iHWhB9Ap4GzfA=";
})
(fetchpatch {
url = "https://github.com/icculus/smpeg/commit/b369feca5bf99d6cff50d8eb316395ef48acf24f.patch";
hash = "sha256-U+a6dbc5cm249KlUcf4vi79yUiT4hgEvMv522K4PqUc=";
})
2017-01-18 00:12:49 +00:00
];
2012-09-27 00:29:53 +01:00
postPatch = ''
substituteInPlace video/gdith.cpp \
--replace 'register int' 'int' \
--replace 'register Uint16' 'Uint16'
'';
2017-01-18 00:12:49 +00:00
enableParallelBuilding = true;
2016-02-07 20:44:18 +00:00
nativeBuildInputs = [ autoconf automake libtool m4 pkg-config makeWrapper ];
2023-08-03 18:41:02 +01:00
buildInputs = [ SDL ] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ gtk2 libGLU libGL ];
outputs = [ "out" "dev" ];
preConfigure = ''
touch NEWS AUTHORS ChangeLog
2012-09-27 00:29:53 +01:00
sh autogen.sh
'';
postInstall = ''
sed -i -e 's,"SDL.h",<SDL/SDL.h>,' \
-e 's,"SDL_mutex.h",<SDL/SDL_mutex.h>,' \
-e 's,"SDL_audio.h",<SDL/SDL_audio.h>,' \
-e 's,"SDL_thread.h",<SDL/SDL_thread.h>,' \
-e 's,"SDL_types.h",<SDL/SDL_types.h>,' \
$dev/include/smpeg/*.h
moveToOutput bin/smpeg-config "$dev"
2014-10-23 01:31:14 +01:00
wrapProgram $dev/bin/smpeg-config \
--prefix PATH ":" "${pkg-config}/bin" \
2022-05-10 06:09:27 +01:00
--prefix PKG_CONFIG_PATH ":" "${lib.getDev SDL}/lib/pkgconfig"
'';
2019-10-30 00:12:09 +00:00
NIX_LDFLAGS = "-lX11";
meta = {
homepage = "http://icculus.org/smpeg/";
description = "MPEG decoding library";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
};
}