kdePackages.bluedevil: work around broken upstream tarball

This commit is contained in:
K900 2024-05-21 22:10:36 +03:00
parent 4fe704b10f
commit bff37b6408

View File

@ -1,9 +1,21 @@
{
mkKdeDerivation,
fetchFromGitLab,
sources,
shared-mime-info,
}:
mkKdeDerivation {
mkKdeDerivation rec {
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];
}