1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/pkgs/games/gcompris/default.nix
2024-10-15 04:32:45 +00:00

75 lines
1.7 KiB
Nix

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