retrofe: 0.6.169 -> 0.10.31
Update to newest version and new repo/website location.
This commit is contained in:
parent
cca7c716c2
commit
3469265101
@ -1,15 +1,16 @@
|
|||||||
{ lib, stdenv, fetchhg, cmake, glib, gst_all_1, makeWrapper, pkg-config
|
{ lib, stdenv, fetchFromGitHub, cmake, glib, gst_all_1, makeWrapper, pkg-config
|
||||||
, python2, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, sqlite, zlib, runtimeShell
|
, python2, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, sqlite, zlib, runtimeShell
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "retrofe";
|
pname = "retrofe";
|
||||||
version = "0.6.169";
|
version = "0.10.31";
|
||||||
|
|
||||||
src = fetchhg {
|
src = fetchFromGitHub {
|
||||||
url = "https://bitbucket.org/teamretro/retrofe";
|
owner = "phulshof";
|
||||||
rev = "8793e03";
|
repo = "RetroFE";
|
||||||
sha256 = "0cvsg07ff0fdqh5zgiv2fs7s6c98hn150kpxmpw5fn6jilaszwkm";
|
rev = "2ddd65a76210d241031c4ac9268255f311df25d1";
|
||||||
|
sha256 = "sha256-uBfECbU2Df/pPpEXXq62S7Ec0YU4lPIsZ8k5UmKD7xQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake makeWrapper pkg-config python2 ];
|
nativeBuildInputs = [ cmake makeWrapper pkg-config python2 ];
|
||||||
@ -18,12 +19,9 @@ stdenv.mkDerivation {
|
|||||||
glib gst_all_1.gstreamer SDL2 SDL2_image SDL2_mixer SDL2_ttf sqlite zlib
|
glib gst_all_1.gstreamer SDL2 SDL2_image SDL2_mixer SDL2_ttf sqlite zlib
|
||||||
] ++ (with gst_all_1; [ gst-libav gst-plugins-base gst-plugins-good ]);
|
] ++ (with gst_all_1; [ gst-libav gst-plugins-base gst-plugins-good ]);
|
||||||
|
|
||||||
patches = [ ./include-paths.patch ];
|
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
cmake RetroFE/Source -BRetroFE/Build -DCMAKE_BUILD_TYPE=Release \
|
cmake RetroFE/Source -BRetroFE/Build -DCMAKE_BUILD_TYPE=Release \
|
||||||
-DVERSION_MAJOR=0 -DVERSION_MINOR=0 -DVERSION_BUILD=0 \
|
-DVERSION_MAJOR=0 -DVERSION_MINOR=0 -DVERSION_BUILD=0 \
|
||||||
-DGSTREAMER_BASE_INCLUDE_DIRS='${gst_all_1.gst-plugins-base.dev}/include/gstreamer-1.0'
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
@ -70,7 +68,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A frontend for arcade cabinets and media PCs";
|
description = "A frontend for arcade cabinets and media PCs";
|
||||||
homepage = "http://retrofe.com";
|
homepage = "http://retrofe.nl/";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ hrdinka ];
|
maintainers = with maintainers; [ hrdinka ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
diff -ur RetroFE.1/RetroFE/Source/CMakeLists.txt RetroFE.2/RetroFE/Source/CMakeLists.txt
|
|
||||||
--- RetroFE.1/RetroFE/Source/CMakeLists.txt 2016-02-21 14:52:36.726070602 +0100
|
|
||||||
+++ RetroFE.2/RetroFE/Source/CMakeLists.txt 2016-02-21 14:38:43.036249029 +0100
|
|
||||||
@@ -59,6 +59,7 @@
|
|
||||||
set(RETROFE_INCLUDE_DIRS
|
|
||||||
"${GLIB2_INCLUDE_DIRS}"
|
|
||||||
"${GSTREAMER_INCLUDE_DIRS}"
|
|
||||||
+ "${GSTREAMER_BASE_INCLUDE_DIRS}"
|
|
||||||
"${SDL2_INCLUDE_DIRS}"
|
|
||||||
"${SDL2_IMAGE_INCLUDE_DIRS}"
|
|
||||||
"${SDL2_MIXER_INCLUDE_DIRS}"
|
|
Loading…
Reference in New Issue
Block a user