nixpkgs/pkgs/games/gcompris/default.nix

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

73 lines
1.6 KiB
Nix
Raw Normal View History

2023-01-25 10:50:04 +03:00
{ stdenv
2019-08-28 10:48:04 +03:00
, cmake
, fetchurl
, gettext
, gst_all_1
, lib
, ninja
2023-01-25 10:50:04 +03:00
, wrapQtAppsHook
2019-08-28 10:48:04 +03:00
, qmlbox2d
, qtbase
2023-01-25 10:50:04 +03:00
, qtcharts
2019-08-28 10:48:04 +03:00
, qtdeclarative
, qtgraphicaleffects
, qtmultimedia
2023-01-25 10:50:04 +03:00
, qtquickcontrols2
2019-08-28 10:48:04 +03:00
, qtsensors
, qttools
, qtxmlpatterns
, extra-cmake-modules
}:
2019-08-28 10:48:04 +03:00
stdenv.mkDerivation (finalAttrs: {
2019-08-28 10:48:04 +03:00
pname = "gcompris";
version = "4.1";
src = fetchurl {
url = "mirror://kde/stable/gcompris/qt/src/gcompris-qt-${finalAttrs.version}.tar.xz";
hash = "sha256-Pz0cOyBfiexKHUsHXm18Zw2FKu7b7vVuwy4Vu4daBoU=";
};
2019-08-28 10:48:04 +03:00
cmakeFlags = [
(lib.cmakeFeature "QML_BOX2D_LIBRARY" "${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.1")
(lib.cmakeBool "BUILD_TESTING" (finalAttrs.doCheck or false))
2019-08-28 10:48:04 +03:00
];
nativeBuildInputs = [ cmake extra-cmake-modules gettext ninja qttools wrapQtAppsHook ];
2019-08-28 10:48:04 +03:00
buildInputs = [
2022-03-13 15:20:09 +03:00
qmlbox2d
2023-01-25 10:50:04 +03:00
qtbase
qtcharts
2022-03-13 15:20:09 +03:00
qtdeclarative
qtgraphicaleffects
qtmultimedia
2023-01-25 10:50:04 +03:00
qtquickcontrols2
2022-03-13 15:20:09 +03:00
qtsensors
qtxmlpatterns
2019-08-28 10:48:04 +03:00
] ++ (with gst_all_1; [
2022-03-13 15:20:09 +03:00
gstreamer
gst-plugins-base
gst-plugins-good
gst-plugins-bad
2019-08-28 10:48:04 +03:00
]);
postInstall = ''
2019-08-28 10:48:04 +03:00
install -Dm444 ../org.kde.gcompris.appdata.xml -t $out/share/metainfo
2019-08-28 10:48:04 +03:00
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
'';
# we need a graphical environment for the tests
doCheck = false;
2019-08-28 10:48:04 +03:00
meta = with lib; {
description = "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 15:20:09 +03:00
mainProgram = "gcompris-qt";
2019-08-28 10:48:04 +03:00
maintainers = with maintainers; [ guibou ];
platforms = platforms.linux;
};
})