Commit 0aee5249 authored by OPNA2608's avatar OPNA2608
Browse files

miriway: nixfmt, modernise

parent 93f70276
Loading
Loading
Loading
Loading
+15 −13
Original line number Diff line number Diff line
{ stdenv
, lib
, fetchFromGitHub
, gitUpdater
, nixosTests
, cmake
, pkg-config
, mir
, libxkbcommon
{
  stdenv,
  lib,
  fetchFromGitHub,
  gitUpdater,
  nixosTests,
  cmake,
  pkg-config,
  mir,
  libxkbcommon,
}:

stdenv.mkDerivation (finalAttrs: {
@@ -40,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: {
    };
  };

  meta = with lib; {
  meta = {
    description = "Mir based Wayland compositor";
    longDescription = ''
      Miriway is a starting point for creating a Wayland based desktop environment using Mir.
@@ -64,8 +65,9 @@ stdenv.mkDerivation (finalAttrs: {
      enabling these in miriway-shell.config.
    '';
    homepage = "https://github.com/Miriway/Miriway";
    license = licenses.gpl3Only;
    platforms = platforms.linux;
    maintainers = with maintainers; [ OPNA2608 ];
    license = lib.licenses.gpl3Only;
    platforms = lib.platforms.linux;
    mainProgram = "miriway";
    maintainers = with lib.maintainers; [ OPNA2608 ];
  };
})