a7937612bf
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gcompris/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/di4sm1nsx7zshk1n6njvnd07m0abj6cc-gcompris-0.91/bin/gcompris-qt had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/di4sm1nsx7zshk1n6njvnd07m0abj6cc-gcompris-0.91/bin/.gcompris-qt-wrapped had a zero exit code or showed the expected version - 0 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 0.91 with grep in /nix/store/di4sm1nsx7zshk1n6njvnd07m0abj6cc-gcompris-0.91 - directory tree listing: https://gist.github.com/0ac8ed77cca8102d4b32b9b9361464f4 - du listing: https://gist.github.com/5f6daf6f26bdc5d5e1c4f4f4359ae0fa
38 lines
1.5 KiB
Nix
38 lines
1.5 KiB
Nix
{stdenv, cmake, qtbase, fetchurl, qtdeclarative, qtmultimedia, qttools, qtsensors, qmlbox2d, gettext, qtquickcontrols, qtgraphicaleffects, makeWrapper,
|
|
gst_all_1, ninja
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
version = "0.91";
|
|
name = "gcompris-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://gcompris.net/download/qt/src/gcompris-qt-${version}.tar.xz";
|
|
sha256 = "09h098w9q79hnzla1pcpqlnnr6dbafm4q6zmdp7wlk11ym8n9kvg";
|
|
};
|
|
|
|
cmakeFlags = "-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.0";
|
|
|
|
nativeBuildInputs = [ cmake ninja makeWrapper ];
|
|
buildInputs = [ qtbase qtdeclarative qttools qtsensors qmlbox2d gettext qtquickcontrols qtmultimedia qtgraphicaleffects] ++ soundPlugins;
|
|
soundPlugins = with gst_all_1; [gst-plugins-good gstreamer gst-plugins-base gst-plugins-bad];
|
|
|
|
postInstall = ''
|
|
# install .desktop and icon file
|
|
mkdir -p $out/share/applications/
|
|
mkdir -p $out/share/icons/hicolor/256x256/apps/
|
|
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" \
|
|
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A high quality educational software suite, including a large number of activities for children aged 2 to 10";
|
|
homepage = "https://gcompris.net/";
|
|
maintainers = [ maintainers.guibou ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|