nixpkgs/pkgs/games/gcompris/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

2019-08-28 07:48:04 +00:00
{ mkDerivation
, cmake
, fetchurl
, gettext
, gst_all_1
, lib
, ninja
, qmlbox2d
, qtbase
, qtdeclarative
, qtgraphicaleffects
, qtmultimedia
, qtquickcontrols
, qtsensors
, qttools
, qtxmlpatterns
}:
2019-08-28 07:48:04 +00:00
mkDerivation rec {
pname = "gcompris";
2021-03-23 01:50:21 +00:00
version = "1.1";
src = fetchurl {
url = "http://gcompris.net/download/qt/src/gcompris-qt-${version}.tar.xz";
2021-03-23 01:50:21 +00:00
sha256 = "sha256-8Kj5R/7WwOuew7e9qgx2HWS8mnHX+cv8mhHmgXbm8q4=";
};
2019-08-28 07:48:04 +00:00
cmakeFlags = [
"-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.0"
];
nativeBuildInputs = [ cmake gettext ninja qttools ];
2019-08-28 07:48:04 +00:00
buildInputs = [
qmlbox2d qtbase qtdeclarative qtgraphicaleffects qtmultimedia qtquickcontrols qtsensors qtxmlpatterns
] ++ (with gst_all_1; [
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
]);
postInstall = ''
2019-08-28 07:48:04 +00:00
install -Dm444 ../org.kde.gcompris.desktop $out/share/applications/gcompris.desktop
install -Dm444 ../images/256-apps-gcompris-qt.png $out/share/icons/hicolor/256x256/apps/gcompris-qt.png
install -Dm444 ../org.kde.gcompris.appdata.xml -t $out/share/metainfo
2019-08-28 07:48:04 +00:00
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
'';
2019-08-28 07:48:04 +00:00
meta = with lib; {
description = "A high quality educational software suite, including a large number of activities for children aged 2 to 10";
homepage = "https://gcompris.net/";
license = licenses.gpl3Plus;
2019-08-28 07:48:04 +00:00
maintainers = with maintainers; [ guibou ];
platforms = platforms.linux;
};
}