kquickimageedit: 0.1 -> 0.1.2 and fix up casing

This commit is contained in:
Peter Hoeg
2020-12-27 17:48:38 +08:00
parent df6ecfc46e
commit 94a116156a
3 changed files with 20 additions and 23 deletions

View File

@@ -0,0 +1,19 @@
{ mkDerivation
, fetchFromGitLab
, extra-cmake-modules
}:
mkDerivation rec {
pname = "kquickimageeditor";
version = "0.1.2";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "libraries";
repo = pname;
rev = "v${version}";
sha256 = "sha256-4X3GO/NPzA3c9KiGIkznLHUjLfNNNnPXif7IFwY5dOM=";
};
nativeBuildInputs = [ extra-cmake-modules ];
}