gnome3.gnome-bluetooth: 3.28.1 → 3.28.2
This commit is contained in:
parent
b55e3f6449
commit
9c066735d5
@ -1,28 +1,47 @@
|
|||||||
{ stdenv, fetchurl, gnome3, meson, ninja, pkgconfig, gtk3, intltool, glib
|
{ stdenv, fetchurl, gnome3, meson, ninja, pkgconfig, gtk3, intltool, glib
|
||||||
, udev, itstool, libxml2, wrapGAppsHook, libnotify, libcanberra-gtk3, gobjectIntrospection }:
|
, udev, itstool, libxml2, wrapGAppsHook, libnotify, libcanberra-gtk3, gobjectIntrospection
|
||||||
|
, gtk-doc, docbook_xsl, docbook_xml_dtd_43 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
name = "gnome-bluetooth-${version}";
|
pname = "gnome-bluetooth";
|
||||||
version = "3.28.1";
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
version = "3.28.2";
|
||||||
|
|
||||||
|
# TODO: split out "lib"
|
||||||
|
outputs = [ "out" "dev" "devdoc" "man" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gnome-bluetooth/${gnome3.versionBranch version}/${name}.tar.xz";
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
||||||
sha256 = "1g3yrq5792qvc5rxnf26cgciawrca27hqn6wxfcf63bpa2dsjcsn";
|
sha256 = "0ch7lll5n8v7m26y6y485gnrik19ml42rsh1drgcxydm6fn62j8z";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
nativeBuildInputs = [
|
||||||
updateScript = gnome3.updateScript { packageName = "gnome-bluetooth"; attrPath = "gnome3.gnome-bluetooth"; };
|
meson ninja intltool itstool pkgconfig libxml2 wrapGAppsHook gobjectIntrospection
|
||||||
};
|
gtk-doc docbook_xsl docbook_xml_dtd_43
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
glib gtk3 udev libnotify libcanberra-gtk3
|
||||||
|
gnome3.defaultIconTheme gnome3.gsettings-desktop-schemas
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja intltool itstool pkgconfig libxml2 wrapGAppsHook gobjectIntrospection ];
|
mesonFlags = [
|
||||||
buildInputs = [ glib gtk3 udev libnotify libcanberra-gtk3
|
"-Dicon_update=false"
|
||||||
gnome3.defaultIconTheme gnome3.gsettings-desktop-schemas ];
|
"-Dgtk_doc=true"
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x meson_post_install.py # patchShebangs requires executable file
|
chmod +x meson_post_install.py # patchShebangs requires executable file
|
||||||
patchShebangs meson_post_install.py
|
patchShebangs meson_post_install.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = gnome3.updateScript {
|
||||||
|
packageName = pname;
|
||||||
|
attrPath = "gnome3.${pname}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://help.gnome.org/users/gnome-bluetooth/stable/index.html.en;
|
homepage = https://help.gnome.org/users/gnome-bluetooth/stable/index.html.en;
|
||||||
description = "Application that let you manage Bluetooth in the GNOME destkop";
|
description = "Application that let you manage Bluetooth in the GNOME destkop";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user