uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
65
pkgs/games/gcompris/default.nix
Normal file
65
pkgs/games/gcompris/default.nix
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
{ mkDerivation
|
||||
, cmake
|
||||
, fetchurl
|
||||
, gettext
|
||||
, gst_all_1
|
||||
, lib
|
||||
, ninja
|
||||
, qmlbox2d
|
||||
, qtbase
|
||||
, qtdeclarative
|
||||
, qtgraphicaleffects
|
||||
, qtmultimedia
|
||||
, qtquickcontrols
|
||||
, qtsensors
|
||||
, qttools
|
||||
, qtxmlpatterns
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "gcompris";
|
||||
version = "2.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.kde.org/stable/gcompris/qt/src/gcompris-qt-${version}.tar.xz";
|
||||
sha256 = "sha256-UgWLp5IVqbeFFCO/PRFJ/X1sPm7nSkagVcgEp5SdzGI=";
|
||||
};
|
||||
|
||||
cmakeFlags = [
|
||||
"-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.1"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake gettext ninja qttools ];
|
||||
|
||||
buildInputs = [
|
||||
qmlbox2d
|
||||
qtdeclarative
|
||||
qtgraphicaleffects
|
||||
qtmultimedia
|
||||
qtquickcontrols
|
||||
qtsensors
|
||||
qtxmlpatterns
|
||||
] ++ (with gst_all_1; [
|
||||
gstreamer
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
gst-plugins-bad
|
||||
]);
|
||||
|
||||
postInstall = ''
|
||||
install -Dm444 ../org.kde.gcompris.desktop -t $out/share/applications
|
||||
install -Dm444 ../org.kde.gcompris.appdata.xml -t $out/share/metainfo
|
||||
install -Dm444 ../images/256-apps-gcompris-qt.png $out/share/icons/hicolor/256x256/apps/gcompris-qt.png
|
||||
|
||||
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
|
||||
'';
|
||||
|
||||
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;
|
||||
mainProgram = "gcompris-qt";
|
||||
maintainers = with maintainers; [ guibou ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue