mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
miriway: 24.11.1 -> 25.02
This commit is contained in:
parent
24cdb83d2c
commit
03b0b73fbd
2 changed files with 11 additions and 3 deletions
|
@ -65,7 +65,10 @@ in
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = [ pkgs.miriway ];
|
systemPackages = with pkgs; [
|
||||||
|
miriway
|
||||||
|
vanilla-dmz
|
||||||
|
];
|
||||||
etc = {
|
etc = {
|
||||||
"xdg/xdg-miriway/miriway-shell.config".text = cfg.config;
|
"xdg/xdg-miriway/miriway-shell.config".text = cfg.config;
|
||||||
};
|
};
|
||||||
|
@ -80,6 +83,11 @@ in
|
||||||
services.displayManager.sessionPackages = [ pkgs.miriway ];
|
services.displayManager.sessionPackages = [ pkgs.miriway ];
|
||||||
|
|
||||||
xdg.icons.enable = true;
|
xdg.icons.enable = true;
|
||||||
|
xdg.icons.fallbackCursorThemes = lib.mkDefault [
|
||||||
|
# Miriway looks for "default" theme, fails to start if not present
|
||||||
|
# Mir normally looks for DMZ-White theme if none specified, so make that present as the default
|
||||||
|
"DMZ-White"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
meta.maintainers = with lib.maintainers; [ OPNA2608 ];
|
meta.maintainers = with lib.maintainers; [ OPNA2608 ];
|
||||||
|
|
|
@ -15,13 +15,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "miriway";
|
pname = "miriway";
|
||||||
version = "24.11.1";
|
version = "25.02";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Miriway";
|
owner = "Miriway";
|
||||||
repo = "Miriway";
|
repo = "Miriway";
|
||||||
tag = "v${finalAttrs.version}";
|
tag = "v${finalAttrs.version}";
|
||||||
hash = "sha256-DphzqU0jT2NE2dSDuQf6BQIjXTwJuPiOjfxk9N9YmaQ=";
|
hash = "sha256-F8zmIuV0IszMZpeOhKAbvrjyA4EQH7JWH10rv2maCzk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue