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
121
pkgs/desktops/gnome/core/totem/default.nix
Normal file
121
pkgs/desktops/gnome/core/totem/default.nix
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, meson
|
||||
, ninja
|
||||
, gettext
|
||||
, gst_all_1
|
||||
, python3Packages
|
||||
, shared-mime-info
|
||||
, pkg-config
|
||||
, gtk3
|
||||
, glib
|
||||
, gobject-introspection
|
||||
, totem-pl-parser
|
||||
, wrapGAppsHook
|
||||
, itstool
|
||||
, libxml2
|
||||
, vala
|
||||
, gnome
|
||||
, grilo
|
||||
, grilo-plugins
|
||||
, libpeas
|
||||
, libhandy
|
||||
, adwaita-icon-theme
|
||||
, gnome-desktop
|
||||
, gsettings-desktop-schemas
|
||||
, gdk-pixbuf
|
||||
, xvfb-run
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "totem";
|
||||
version = "42.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/totem/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "SvBJHduV34szruOZ06UPnHqxfeiNOvYzVlZ8+I9X5qs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
vala
|
||||
pkg-config
|
||||
gettext
|
||||
python3Packages.python
|
||||
itstool
|
||||
gobject-introspection
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
glib
|
||||
grilo
|
||||
totem-pl-parser
|
||||
grilo-plugins
|
||||
gst_all_1.gstreamer
|
||||
gst_all_1.gst-plugins-base
|
||||
(gst_all_1.gst-plugins-good.override { gtkSupport = true; })
|
||||
gst_all_1.gst-plugins-bad
|
||||
gst_all_1.gst-plugins-ugly
|
||||
gst_all_1.gst-libav
|
||||
libpeas
|
||||
libhandy
|
||||
shared-mime-info
|
||||
gdk-pixbuf
|
||||
libxml2
|
||||
adwaita-icon-theme
|
||||
gnome-desktop
|
||||
gsettings-desktop-schemas
|
||||
# for plug-ins
|
||||
python3Packages.pygobject3
|
||||
python3Packages.dbus-python
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
xvfb-run
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
# TODO: https://github.com/NixOS/nixpkgs/issues/36468
|
||||
"-Dc_args=-I${glib.dev}/include/gio-unix-2.0"
|
||||
];
|
||||
|
||||
# Tests do not work with GStreamer 1.18.
|
||||
# https://gitlab.gnome.org/GNOME/totem/-/issues/450
|
||||
doCheck = false;
|
||||
|
||||
postPatch = ''
|
||||
chmod +x meson_compile_python.py meson_post_install.py # patchShebangs requires executable file
|
||||
patchShebangs \
|
||||
./meson_compile_python.py \
|
||||
./meson_post_install.py
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
|
||||
xvfb-run -s '-screen 0 800x600x24' \
|
||||
ninja test
|
||||
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
wrapPrefixVariables = [ "PYTHONPATH" ];
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome.updateScript {
|
||||
packageName = "totem";
|
||||
attrPath = "gnome.totem";
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://wiki.gnome.org/Apps/Videos";
|
||||
description = "Movie player for the GNOME desktop based on GStreamer";
|
||||
maintainers = teams.gnome.members;
|
||||
license = licenses.gpl2Plus; # with exception to allow use of non-GPL compatible plug-ins
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue