maui-shell: init at 0.5.6
This commit is contained in:
parent
78317d420d
commit
58d84f7f0f
2 changed files with 89 additions and 0 deletions
87
pkgs/applications/window-managers/maui-shell/default.nix
Normal file
87
pkgs/applications/window-managers/maui-shell/default.nix
Normal file
|
@ -0,0 +1,87 @@
|
|||
{ lib
|
||||
, pkgs
|
||||
, mkDerivation
|
||||
, fetchFromGitHub
|
||||
, qtquickcontrols2
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, kio
|
||||
, krunner
|
||||
, prison
|
||||
, knotifyconfig
|
||||
, kidletime
|
||||
, kpeople
|
||||
, kdesu
|
||||
, kactivities-stats
|
||||
, ktexteditor
|
||||
, kinit
|
||||
, kunitconversion
|
||||
, kitemmodels
|
||||
, phonon
|
||||
, polkit-qt
|
||||
, polkit
|
||||
, mauikit
|
||||
, mauikit-filebrowsing
|
||||
, bluedevil
|
||||
, plasma-nm
|
||||
, plasma-pa
|
||||
, bluez-qt
|
||||
, maui-core
|
||||
, cask-server
|
||||
, mauiman
|
||||
, mauikit-calendar
|
||||
, qtmultimedia
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "maui-shell";
|
||||
version = "0.5.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Nitrux";
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "sha256-lhTtIHE+FUgZFaPYoIRgLPrBUPISeXHCg3rn0FlQg7w=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
bluedevil
|
||||
bluez-qt
|
||||
cask-server
|
||||
kactivities-stats
|
||||
kdesu
|
||||
kidletime
|
||||
kinit
|
||||
kitemmodels
|
||||
knotifyconfig
|
||||
krunner
|
||||
kunitconversion
|
||||
kpeople
|
||||
ktexteditor
|
||||
mauikit
|
||||
mauikit-calendar
|
||||
mauikit-filebrowsing
|
||||
mauiman
|
||||
maui-core
|
||||
phonon
|
||||
plasma-nm
|
||||
plasma-pa
|
||||
polkit
|
||||
polkit-qt
|
||||
prison
|
||||
qtmultimedia
|
||||
qtquickcontrols2
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A convergent shell for desktops, tablets, and phones";
|
||||
homepage = "https://github.com/Nitrux/maui-shell";
|
||||
license = licenses.lgpl3;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
};
|
||||
}
|
|
@ -9439,6 +9439,8 @@ with pkgs;
|
|||
|
||||
mars-mips = callPackage ../development/tools/mars-mips { };
|
||||
|
||||
maui-shell = libsForQt5.callPackage ../applications/window-managers/maui-shell { };
|
||||
|
||||
mawk = callPackage ../tools/text/mawk { };
|
||||
|
||||
mb2md = callPackage ../tools/text/mb2md { };
|
||||
|
|
Loading…
Reference in a new issue