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
137
pkgs/development/libraries/tracker-miners/default.nix
Normal file
137
pkgs/development/libraries/tracker-miners/default.nix
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, asciidoc
|
||||
, docbook-xsl-nons
|
||||
, docbook_xml_dtd_45
|
||||
, gettext
|
||||
, itstool
|
||||
, libxslt
|
||||
, gexiv2
|
||||
, tracker
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, vala
|
||||
, wrapGAppsHook
|
||||
, bzip2
|
||||
, dbus
|
||||
, evolution-data-server
|
||||
, exempi
|
||||
, giflib
|
||||
, glib
|
||||
, gnome
|
||||
, gst_all_1
|
||||
, icu
|
||||
, json-glib
|
||||
, libcue
|
||||
, libexif
|
||||
, libgsf
|
||||
, libgxps
|
||||
, libiptcdata
|
||||
, libjpeg
|
||||
, libosinfo
|
||||
, libpng
|
||||
, libseccomp
|
||||
, libsoup
|
||||
, libtiff
|
||||
, libuuid
|
||||
, libxml2
|
||||
, networkmanager
|
||||
, poppler
|
||||
, systemd
|
||||
, taglib
|
||||
, upower
|
||||
, totem-pl-parser
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tracker-miners";
|
||||
version = "3.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "izh967d0BhwGrfsmeg4ODz0heZNxvwHQVklaubjdlBc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
asciidoc
|
||||
docbook-xsl-nons
|
||||
docbook_xml_dtd_45
|
||||
gettext
|
||||
itstool
|
||||
libxslt
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
vala
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
# TODO: add libenca, libosinfo
|
||||
buildInputs = [
|
||||
bzip2
|
||||
dbus
|
||||
evolution-data-server
|
||||
exempi
|
||||
giflib
|
||||
glib
|
||||
gexiv2
|
||||
totem-pl-parser
|
||||
tracker
|
||||
gst_all_1.gst-plugins-base
|
||||
gst_all_1.gst-plugins-good
|
||||
gst_all_1.gst-plugins-bad
|
||||
gst_all_1.gst-plugins-ugly
|
||||
gst_all_1.gstreamer
|
||||
gst_all_1.gst-libav
|
||||
icu
|
||||
json-glib
|
||||
libcue
|
||||
libexif
|
||||
libgsf
|
||||
libgxps
|
||||
libiptcdata
|
||||
libjpeg
|
||||
libosinfo
|
||||
libpng
|
||||
libseccomp
|
||||
libsoup
|
||||
libtiff
|
||||
libuuid
|
||||
libxml2
|
||||
networkmanager
|
||||
poppler
|
||||
systemd
|
||||
taglib
|
||||
upower
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
# TODO: tests do not like our sandbox
|
||||
"-Dfunctional_tests=false"
|
||||
|
||||
# libgrss is unmaintained and has no new releases since 2015, and an open
|
||||
# security issue since then. Despite a patch now being availab, we're opting
|
||||
# to be safe due to the general state of the project
|
||||
"-Dminer_rss=false"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
glib-compile-schemas "$out/share/glib-2.0/schemas"
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome.updateScript {
|
||||
packageName = pname;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://wiki.gnome.org/Projects/Tracker";
|
||||
description = "Desktop-neutral user information store, search tool and indexer";
|
||||
maintainers = teams.gnome.members;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue