Merge pull request #305806 from K900/backport-solid-luks

kdePackages.solid: backport fix for mounting LUKS devices
This commit is contained in:
K900 2024-04-22 10:16:19 +03:00 committed by GitHub
commit 5eade37305
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 2 deletions

View File

@ -1,5 +1,6 @@
{
mkKdeDerivation,
fetchpatch,
qttools,
bison,
flex,
@ -8,8 +9,17 @@
mkKdeDerivation {
pname = "solid";
# Also search /run/wrappers for mount/umount
patches = [./fix-search-path.patch];
patches = [
# Also search /run/wrappers for mount/umount
./fix-search-path.patch
# Backport fix for mounting removable LUKS devices
# FIXME: remove in 6.2
(fetchpatch {
url = "https://invent.kde.org/frameworks/solid/-/commit/a3b18591ba144fae0cd0cfc087a45c64000d4e51.patch";
hash = "sha256-e7+amjOShUSzPb0pAxnAuuh/fbK/YLESqR0co1bs+wg=";
})
];
extraNativeBuildInputs = [qttools bison flex];
extraBuildInputs = [libimobiledevice];