ktextaddons: init at 1.1.0
This commit is contained in:
parent
bef31256a5
commit
e5ca54ba8f
20
pkgs/development/libraries/ktextaddons/default.nix
Normal file
20
pkgs/development/libraries/ktextaddons/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, mkDerivation, fetchurl, cmake, extra-cmake-modules, karchive, kconfigwidgets, kcoreaddons, ki18n, kxmlgui, qtkeychain }:
|
||||
mkDerivation rec {
|
||||
pname = "ktextaddons";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
|
||||
hash = "sha256-BV1tHCD6kGI5Zj8PRZcEanLi1O7huS+qUijjtePDvik=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
||||
buildInputs = [ karchive kconfigwidgets kcoreaddons ki18n kxmlgui qtkeychain ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Various text handling addons for KDE applications";
|
||||
homepage = "https://invent.kde.org/libraries/ktextaddons/";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [];
|
||||
};
|
||||
}
|
@ -20886,6 +20886,8 @@ with pkgs;
|
||||
|
||||
kronosnet = callPackage ../development/libraries/kronosnet { };
|
||||
|
||||
ktextaddons = libsForQt5.callPackage ../development/libraries/ktextaddons {};
|
||||
|
||||
l-smash = callPackage ../development/libraries/l-smash {
|
||||
stdenv = gccStdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user