Merge pull request #313611 from K900/bluedevil-tarball-fixed

kdePackages.bluedevil: the tarball is fixed
This commit is contained in:
K900
2024-05-22 12:07:05 +03:00
committed by GitHub
2 changed files with 4 additions and 16 deletions

View File

@@ -1,8 +1,8 @@
{
"bluedevil": {
"version": "6.0.5",
"url": "mirror://kde/stable/plasma/6.0.5/bluedevil-6.0.5.tar.xz",
"hash": "sha256-mJHTxteC62ofaevsRO0PSG8sfrkKIUOU0rbMbq/1psc="
"version": "6.0.5.1",
"url": "mirror://kde/stable/plasma/6.0.5/bluedevil-6.0.5.1.tar.xz",
"hash": "sha256-Zvzi1J9qxxa1UeMDD47T9xvuwEKNofma9+lZvJD1POI="
},
"breeze": {
"version": "6.0.5",

View File

@@ -1,21 +1,9 @@
{
mkKdeDerivation,
fetchFromGitLab,
sources,
shared-mime-info,
}:
mkKdeDerivation rec {
mkKdeDerivation {
pname = "bluedevil";
# Upstream tarball is broken, so fetch from Invent temporarily.
# FIXME: remove in next release.
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "plasma";
repo = "bluedevil";
rev = "v${sources.${pname}.version}";
hash = "sha256-3scHXPZ6dSWa2yea89R1u4jbkr6IFP6jvTLEC4O5uYY=";
};
extraNativeBuildInputs = [shared-mime-info];
}