gcompris: use Qt mkDerivation
This commit is contained in:
parent
3f4144c30a
commit
8d3c2c8538
1 changed files with 37 additions and 19 deletions
|
@ -1,37 +1,55 @@
|
||||||
{stdenv, cmake, qtbase, fetchurl, qtdeclarative, qtmultimedia, qttools, qtsensors, qmlbox2d, gettext, qtquickcontrols, qtgraphicaleffects, qtxmlpatterns, makeWrapper,
|
{ mkDerivation
|
||||||
gst_all_1, ninja
|
, cmake
|
||||||
|
, fetchurl
|
||||||
|
, gettext
|
||||||
|
, gst_all_1
|
||||||
|
, lib
|
||||||
|
, ninja
|
||||||
|
, qmlbox2d
|
||||||
|
, qtbase
|
||||||
|
, qtdeclarative
|
||||||
|
, qtgraphicaleffects
|
||||||
|
, qtmultimedia
|
||||||
|
, qtquickcontrols
|
||||||
|
, qtsensors
|
||||||
|
, qttools
|
||||||
|
, qtxmlpatterns
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "gcompris";
|
||||||
version = "0.96";
|
version = "0.96";
|
||||||
name = "gcompris-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://gcompris.net/download/qt/src/gcompris-qt-${version}.tar.xz";
|
url = "http://gcompris.net/download/qt/src/gcompris-qt-${version}.tar.xz";
|
||||||
sha256 = "06483il59l46ny2w771sg45dgzjwv1ph7vidzzbj0wb8wbk2rg52";
|
sha256 = "06483il59l46ny2w771sg45dgzjwv1ph7vidzzbj0wb8wbk2rg52";
|
||||||
};
|
};
|
||||||
|
|
||||||
cmakeFlags = "-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.0";
|
cmakeFlags = [
|
||||||
|
"-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.0"
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ninja makeWrapper ];
|
nativeBuildInputs = [ cmake gettext ninja qttools ];
|
||||||
buildInputs = [ qtbase qtdeclarative qttools qtsensors qmlbox2d gettext qtquickcontrols qtmultimedia qtgraphicaleffects qtxmlpatterns] ++ soundPlugins;
|
|
||||||
soundPlugins = with gst_all_1; [gst-plugins-good gstreamer gst-plugins-base gst-plugins-bad];
|
buildInputs = [
|
||||||
|
qmlbox2d qtbase qtdeclarative qtgraphicaleffects qtmultimedia qtquickcontrols qtsensors qtxmlpatterns
|
||||||
|
] ++ (with gst_all_1; [
|
||||||
|
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
|
||||||
|
]);
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
# install .desktop and icon file
|
install -Dm444 ../org.kde.gcompris.desktop $out/share/applications/gcompris.desktop
|
||||||
mkdir -p $out/share/applications/
|
install -Dm444 ../images/256-apps-gcompris-qt.png $out/share/icons/hicolor/256x256/apps/gcompris-qt.png
|
||||||
mkdir -p $out/share/icons/hicolor/256x256/apps/
|
install -Dm444 ../org.kde.gcompris.appdata.xml -t $out/share/metainfo
|
||||||
cp ../org.kde.gcompris.desktop $out/share/applications/gcompris.desktop
|
|
||||||
cp -r ../images/256-apps-gcompris-qt.png $out/share/icons/hicolor/256x256/apps/gcompris-qt.png
|
|
||||||
|
|
||||||
wrapProgram "$out/bin/gcompris-qt" \
|
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
|
||||||
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
'';
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A high quality educational software suite, including a large number of activities for children aged 2 to 10";
|
description = "A high quality educational software suite, including a large number of activities for children aged 2 to 10";
|
||||||
homepage = "https://gcompris.net/";
|
homepage = "https://gcompris.net/";
|
||||||
maintainers = [ maintainers.guibou ];
|
|
||||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ guibou ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue