pantheon.gnome-bluetooth-contract: use gnome-bluetooth_1_0

This commit is contained in:
Bobby Rong 2022-03-31 23:32:29 +08:00
parent baa0a8b9ef
commit 7ce8bc5d48
No known key found for this signature in database
GPG key ID: ED07364437C91161
3 changed files with 6 additions and 6 deletions

View file

@ -302,6 +302,7 @@ in
environment.systemPackages = with pkgs.pantheon; [ environment.systemPackages = with pkgs.pantheon; [
contractor contractor
file-roller-contract file-roller-contract
gnome-bluetooth-contract
]; ];
environment.pathsToLink = [ environment.pathsToLink = [

View file

@ -108,7 +108,7 @@ lib.makeScope pkgs.newScope (self: with self; {
gala = callPackage ./desktop/gala { }; gala = callPackage ./desktop/gala { };
gnome-bluetooth-contract = callPackage ./desktop/gnome-bluetooth-contract { gnome-bluetooth-contract = callPackage ./desktop/gnome-bluetooth-contract {
inherit (gnome) gnome-bluetooth; inherit (gnome) gnome-bluetooth_1_0;
}; };
wingpanel = callPackage ./desktop/wingpanel { }; wingpanel = callPackage ./desktop/wingpanel { };

View file

@ -3,7 +3,7 @@
, fetchFromGitHub , fetchFromGitHub
, unstableGitUpdater , unstableGitUpdater
, substituteAll , substituteAll
, gnome-bluetooth , gnome-bluetooth_1_0
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -20,7 +20,9 @@ stdenv.mkDerivation rec {
patches = [ patches = [
(substituteAll { (substituteAll {
src = ./exec-path.patch; src = ./exec-path.patch;
gnome_bluetooth = gnome-bluetooth; # sendto device selection is removed in gnome-bluetooth 42
# https://github.com/elementary/gnome-bluetooth-contract/issues/1
gnome_bluetooth = gnome-bluetooth_1_0;
}) })
]; ];
@ -49,8 +51,5 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = teams.pantheon.members; maintainers = teams.pantheon.members;
platforms = platforms.linux; platforms = platforms.linux;
# sendto device selection is removed in gnome-bluetooth 42
# https://github.com/elementary/gnome-bluetooth-contract/issues/1
broken = true;
}; };
} }