krecorder: init at 21.05

This commit is contained in:
Samuel Dionne-Riel 2021-03-22 16:09:01 -04:00
parent d07a0aed11
commit 0acc8547bc
2 changed files with 37 additions and 0 deletions

View File

@ -65,6 +65,7 @@ let
calindori = callPackage ./calindori.nix {};
kalk = callPackage ./kalk.nix {};
kclock = callPackage ./kclock.nix {};
krecorder = callPackage ./krecorder.nix {};
};
in lib.makeScope libsForQt5.newScope packages

View File

@ -0,0 +1,36 @@
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, kconfig
, ki18n
, kirigami2
, qtmultimedia
, qtquickcontrols2
}:
mkDerivation rec {
pname = "krecorder";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kconfig
ki18n
kirigami2
qtmultimedia
qtquickcontrols2
];
meta = with lib; {
description = "Audio recorder for Plasma Mobile";
homepage = "https://invent.kde.org/plasma-mobile/krecorder";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ samueldr ];
};
}