nixpkgs/pkgs/applications/kde/kalk.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

52 lines
673 B
Nix

{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, bison
, flex
, gmp
, mpfr
, kconfig
, kcoreaddons
, ki18n
, kirigami2
, kunitconversion
, qtfeedback
, qtquickcontrols2
}:
mkDerivation rec {
pname = "kalk";
nativeBuildInputs = [
cmake
extra-cmake-modules
bison
flex
];
buildInputs = [
gmp
mpfr
kconfig
kcoreaddons
ki18n
kirigami2
kunitconversion
qtfeedback
qtquickcontrols2
];
meta = with lib; {
description = "Calculator built with kirigami";
mainProgram = "kalk";
homepage = "https://invent.kde.org/plasma-mobile/kalk";
license = licenses.gpl3Plus;
maintainers = [ ];
};
}