deadbeef: remove gtk2
This commit is contained in:
@@ -144,6 +144,8 @@
|
|||||||
and backwards incompatible database migrations. Ensure backups are valid and run a Full Scan after
|
and backwards incompatible database migrations. Ensure backups are valid and run a Full Scan after
|
||||||
starting the new version.
|
starting the new version.
|
||||||
|
|
||||||
|
- `deabbeef` no longer support `gtk2`.
|
||||||
|
|
||||||
- `tooling-language-server` has been renamed to `deputy` (both the package and binary), following the rename of the upstream project.
|
- `tooling-language-server` has been renamed to `deputy` (both the package and binary), following the rename of the upstream project.
|
||||||
|
|
||||||
- `fetchFromBitBucket` has gained a `fetchgit` backend when passing in git-related arguments similar to `fetchFromGitHub`.
|
- `fetchFromBitBucket` has gained a `fetchgit` backend when passing in git-related arguments similar to `fetchFromGitHub`.
|
||||||
|
|||||||
@@ -10,10 +10,6 @@
|
|||||||
pkg-config,
|
pkg-config,
|
||||||
jansson,
|
jansson,
|
||||||
swift-corelibs-libdispatch,
|
swift-corelibs-libdispatch,
|
||||||
# deadbeef can use either gtk2 or gtk3
|
|
||||||
gtk2Support ? false,
|
|
||||||
gtk2,
|
|
||||||
gtk3Support ? true,
|
|
||||||
gtk3,
|
gtk3,
|
||||||
gsettings-desktop-schemas,
|
gsettings-desktop-schemas,
|
||||||
wrapGAppsHook3,
|
wrapGAppsHook3,
|
||||||
@@ -65,8 +61,6 @@
|
|||||||
curl,
|
curl,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert gtk2Support || gtk3Support;
|
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) optionals;
|
inherit (lib) optionals;
|
||||||
|
|
||||||
@@ -87,11 +81,6 @@ clangStdenv.mkDerivation {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
jansson
|
jansson
|
||||||
swift-corelibs-libdispatch
|
swift-corelibs-libdispatch
|
||||||
]
|
|
||||||
++ optionals gtk2Support [
|
|
||||||
gtk2
|
|
||||||
]
|
|
||||||
++ optionals gtk3Support [
|
|
||||||
gtk3
|
gtk3
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
]
|
]
|
||||||
@@ -163,8 +152,6 @@ clangStdenv.mkDerivation {
|
|||||||
intltool
|
intltool
|
||||||
libtool
|
libtool
|
||||||
pkg-config
|
pkg-config
|
||||||
]
|
|
||||||
++ optionals gtk3Support [
|
|
||||||
wrapGAppsHook3
|
wrapGAppsHook3
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user