anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / development / libraries / maui-core / default.nix
blob901b26f4e646a032e8eba816acbbb5c35f73cf0f
1 { lib
2 , mkDerivation
3 , libcanberra
4 , pulseaudio
5 , fetchFromGitHub
6 , cmake
7 , extra-cmake-modules
8 , kio
9 , kidletime
12 mkDerivation rec {
13   pname = "maui-core";
14   version = "0.6.6";
16   src = fetchFromGitHub {
17     owner = "Nitrux";
18     repo = pname;
19     rev = "refs/tags/v${version}";
20     sha256 = "sha256-o0Xwh9w0cClMw85FwpQB9CNWoSnzARxs6aGfvCA4BhA=";
21   };
23   nativeBuildInputs = [
24     cmake
25     extra-cmake-modules
26   ];
28   buildInputs = [
29     kidletime
30     kio
31     libcanberra
32     pulseaudio
33   ];
35   meta = with lib; {
36     description = "Core libraries to manage the desktop to be shared between Maui Settings and Cask";
37     homepage = "https://github.com/Nitrux/maui-core";
38     # Missing license information https://github.com/Nitrux/maui-core/issues/1
39     license = licenses.unfree;
40     maintainers = with maintainers; [ onny ];
41     platforms = platforms.linux;
42   };