nixpkgs/pkgs/development/libraries/grilo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
1.5 KiB
Nix
Raw Normal View History

2021-10-14 22:48:14 +02:00
{ stdenv
, lib
, fetchurl
, meson
2022-08-07 00:48:42 +02:00
, mesonEmulatorHook
2021-10-14 22:48:14 +02:00
, ninja
, pkg-config
, gettext
, vala
, glib
, liboauth
, gtk3
, gtk-doc
, docbook-xsl-nons
, docbook_xml_dtd_43
, libxml2
, gnome
, gobject-introspection
, libsoup_3
2021-10-14 22:48:14 +02:00
, totem-pl-parser
}:
2021-10-14 22:48:14 +02:00
stdenv.mkDerivation rec {
2018-03-03 07:09:13 +01:00
pname = "grilo";
version = "0.3.15"; # if you change minor, also change ./setup-hook.sh
2018-06-18 03:59:02 +02:00
outputs = [ "out" "dev" "man" "devdoc" ];
outputBin = "dev";
2021-10-14 22:48:14 +02:00
setupHook = ./setup-hook.sh;
src = fetchurl {
2021-10-14 22:48:14 +02:00
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "81Ks9zZlZpk0JwY2/t5mtS2mgB/iD2OMQEirJnhXey0=";
};
2018-11-20 20:34:13 +01:00
mesonFlags = [
"-Denable-gtk-doc=true"
];
2018-06-18 03:59:02 +02:00
nativeBuildInputs = [
2021-10-14 22:48:14 +02:00
meson
ninja
pkg-config
gettext
gobject-introspection
vala
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
2022-08-07 00:48:42 +02:00
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
mesonEmulatorHook
2021-10-14 22:48:14 +02:00
];
buildInputs = [
glib
liboauth
gtk3
libxml2
libsoup_3
2021-10-14 22:48:14 +02:00
totem-pl-parser
2018-06-18 03:59:02 +02:00
];
2018-03-03 07:09:13 +01:00
passthru = {
updateScript = gnome.updateScript {
2018-03-03 07:09:13 +01:00
packageName = pname;
versionPolicy = "none";
};
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Projects/Grilo";
description = "Framework that provides access to various sources of multimedia content, using a pluggable system";
maintainers = teams.gnome.members;
2021-10-14 22:48:14 +02:00
license = licenses.lgpl2Plus;
platforms = platforms.linux;
};
}