Files
nixpkgs/pkgs/development/libraries/kquickimageedit/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

39 lines
842 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
extra-cmake-modules,
kdePackages,
qtbase,
qtdeclarative,
}:
stdenv.mkDerivation rec {
pname = "kquickimageeditor";
version = "0.5.1";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "libraries";
repo = "kquickimageeditor";
rev = "v${version}";
sha256 = "sha256-8TJBg42E9lNbLpihjtc5Z/drmmSGQmic8yO45yxSNQ4=";
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
kdePackages.kirigami
qtbase
qtdeclarative
];
dontWrapQtApps = true;
meta = {
description = "Set of QtQuick components providing basic image editing capabilities";
homepage = "https://invent.kde.org/libraries/kquickimageeditor";
license = lib.licenses.lgpl21Plus;
platforms = lib.platforms.unix;
badPlatforms = lib.platforms.darwin;
};
}