nixpkgs/pkgs/games/gcompris/default.nix

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

70 lines
1.6 KiB
Nix
Raw Normal View History

2023-01-25 07:50:04 +00:00
{ stdenv
2019-08-28 07:48:04 +00:00
, cmake
, fetchurl
, gettext
, gst_all_1
, lib
, ninja
2023-01-25 07:50:04 +00:00
, wrapQtAppsHook
2019-08-28 07:48:04 +00:00
, qmlbox2d
, qtbase
2023-01-25 07:50:04 +00:00
, qtcharts
2019-08-28 07:48:04 +00:00
, qtdeclarative
, qtgraphicaleffects
, qtmultimedia
2023-01-25 07:50:04 +00:00
, qtquickcontrols2
2019-08-28 07:48:04 +00:00
, qtsensors
, qttools
, qtxmlpatterns
}:
2019-08-28 07:48:04 +00:00
2023-01-25 07:50:04 +00:00
stdenv.mkDerivation rec {
2019-08-28 07:48:04 +00:00
pname = "gcompris";
2023-04-16 07:50:45 +00:00
version = "3.2";
src = fetchurl {
2022-03-13 12:20:09 +00:00
url = "https://download.kde.org/stable/gcompris/qt/src/gcompris-qt-${version}.tar.xz";
2023-04-16 07:50:45 +00:00
hash = "sha256-WopJB9p7GnfCtUoEKxtzzRXCogcx03ofRjGLhkvW0Rs=";
};
2019-08-28 07:48:04 +00:00
cmakeFlags = [
2022-02-11 16:48:44 +00:00
"-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.1"
2019-08-28 07:48:04 +00:00
];
2023-01-25 07:50:04 +00:00
nativeBuildInputs = [ cmake gettext ninja qttools wrapQtAppsHook ];
2019-08-28 07:48:04 +00:00
buildInputs = [
2022-03-13 12:20:09 +00:00
qmlbox2d
2023-01-25 07:50:04 +00:00
qtbase
qtcharts
2022-03-13 12:20:09 +00:00
qtdeclarative
qtgraphicaleffects
qtmultimedia
2023-01-25 07:50:04 +00:00
qtquickcontrols2
2022-03-13 12:20:09 +00:00
qtsensors
qtxmlpatterns
2019-08-28 07:48:04 +00:00
] ++ (with gst_all_1; [
2022-03-13 12:20:09 +00:00
gstreamer
gst-plugins-base
gst-plugins-good
gst-plugins-bad
2019-08-28 07:48:04 +00:00
]);
postInstall = ''
2022-03-13 12:20:09 +00:00
install -Dm444 ../org.kde.gcompris.desktop -t $out/share/applications
2019-08-28 07:48:04 +00:00
install -Dm444 ../org.kde.gcompris.appdata.xml -t $out/share/metainfo
2022-03-13 12:20:09 +00:00
install -Dm444 ../images/256-apps-gcompris-qt.png $out/share/icons/hicolor/256x256/apps/gcompris-qt.png
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;
2022-03-13 12:20:09 +00:00
mainProgram = "gcompris-qt";
2019-08-28 07:48:04 +00:00
maintainers = with maintainers; [ guibou ];
platforms = platforms.linux;
};
}