kdiagram: 2.6.0 -> 2.7.0
Use fetchFromGitLab as it seems to be unavailable in the previous url.
This commit is contained in:
parent
09fd4270d7
commit
35078d9918
@ -1,14 +1,18 @@
|
|||||||
{
|
{
|
||||||
mkDerivation, fetchurl, lib,
|
mkDerivation, fetchFromGitLab, lib,
|
||||||
extra-cmake-modules, qttools,
|
extra-cmake-modules, qttools,
|
||||||
qtbase, qtsvg,
|
qtbase, qtsvg,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation {
|
mkDerivation rec {
|
||||||
name = "kdiagram-2.6.0";
|
pname = "kdiagram";
|
||||||
src = fetchurl {
|
version = "2.7.0";
|
||||||
url = "https://download.kde.org/stable/kdiagram/2.6.0/src/kdiagram-2.6.0.tar.xz";
|
src = fetchFromGitLab {
|
||||||
sha256 = "10hqk12wwgbiq4q5145s8v7v96j621ckq1yil9s4pihmgsnqsy02";
|
domain = "invent.kde.org";
|
||||||
|
owner = "graphics";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "NSBNHPr8JzBn3y3ivhL0RjiXjDuPwZsTTOeI22pq3vc=";
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
||||||
propagatedBuildInputs = [ qtbase qtsvg ];
|
propagatedBuildInputs = [ qtbase qtsvg ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user