pantheon.gnome-bluetooth-contract: use gnome-bluetooth_1_0
This commit is contained in:
parent
baa0a8b9ef
commit
7ce8bc5d48
3 changed files with 6 additions and 6 deletions
|
@ -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 = [
|
||||||
|
|
|
@ -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 { };
|
||||||
|
|
|
@ -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;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue