spacebar: init at 21.05

+41
+1
pkgs/applications/plasma-mobile/default.nix
··· 68 krecorder = callPackage ./krecorder.nix {}; 69 plasma-dialer = callPackage ./plasma-dialer.nix {}; 70 plasma-phonebook = callPackage ./plasma-phonebook.nix {}; 71 }; 72 73 in lib.makeScope libsForQt5.newScope packages
··· 68 krecorder = callPackage ./krecorder.nix {}; 69 plasma-dialer = callPackage ./plasma-dialer.nix {}; 70 plasma-phonebook = callPackage ./plasma-phonebook.nix {}; 71 + spacebar = callPackage ./spacebar.nix {}; 72 }; 73 74 in lib.makeScope libsForQt5.newScope packages
+40
pkgs/applications/plasma-mobile/spacebar.nix
···
··· 1 + { lib 2 + , mkDerivation 3 + 4 + , cmake 5 + , extra-cmake-modules 6 + 7 + , kcontacts 8 + , ki18n 9 + , kirigami2 10 + , knotifications 11 + , kpeople 12 + , libqofono 13 + , telepathy 14 + }: 15 + 16 + mkDerivation rec { 17 + pname = "spacebar"; 18 + 19 + nativeBuildInputs = [ 20 + cmake 21 + extra-cmake-modules 22 + ]; 23 + 24 + buildInputs = [ 25 + kcontacts 26 + ki18n 27 + kirigami2 28 + knotifications 29 + kpeople 30 + libqofono 31 + telepathy 32 + ]; 33 + 34 + meta = with lib; { 35 + description = "SMS application for Plasma Mobile"; 36 + homepage = "https://invent.kde.org/plasma-mobile/spacebar"; 37 + license = licenses.gpl2Plus; 38 + maintainers = with maintainers; [ samueldr ]; 39 + }; 40 + }