mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
102 lines
1.8 KiB
Nix
102 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, substituteAll
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, gettext
|
|
, gperf
|
|
, sqlite
|
|
, librest
|
|
, libarchive
|
|
, libsoup
|
|
, gnome3
|
|
, libxml2
|
|
, lua5_3
|
|
, liboauth
|
|
, libgdata
|
|
, libmediaart
|
|
, grilo
|
|
, gst_all_1
|
|
, gnome-online-accounts
|
|
, gmime
|
|
, gom
|
|
, json-glib
|
|
, avahi
|
|
, tracker
|
|
, dleyna-server
|
|
, itstool
|
|
, totem-pl-parser
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "grilo-plugins";
|
|
version = "0.3.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0xr59gzb8gw2bgj14mjllgn8y7srh373j0fp0v16ak8nd84dzdn6";
|
|
};
|
|
|
|
patches = [
|
|
# grl-chromaprint requires the following GStreamer elements:
|
|
# * fakesink (gstreamer)
|
|
# * playbin (gst-plugins-base)
|
|
# * chromaprint (gst-plugins-bad)
|
|
(substituteAll {
|
|
src = ./chromaprint-gst-plugins.patch;
|
|
load_plugins = lib.concatMapStrings (plugin: ''gst_registry_scan_path(gst_registry_get(), "${plugin}/lib/gstreamer-1.0");'') (with gst_all_1; [
|
|
gstreamer
|
|
gst-plugins-base
|
|
gst-plugins-bad
|
|
]);
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
gperf # for lua-factory
|
|
];
|
|
|
|
buildInputs = [
|
|
grilo
|
|
libxml2
|
|
libgdata
|
|
lua5_3
|
|
liboauth
|
|
sqlite
|
|
gnome-online-accounts
|
|
totem-pl-parser
|
|
librest
|
|
libarchive
|
|
libsoup
|
|
gmime
|
|
gom
|
|
json-glib
|
|
avahi
|
|
libmediaart
|
|
tracker
|
|
dleyna-server
|
|
gst_all_1.gstreamer
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wiki.gnome.org/Projects/Grilo";
|
|
description = "A collection of plugins for the Grilo framework";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|