1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-26 11:06:44 +03:00

magpie: move from budgie scope to top-level

This commit is contained in:
seth 2024-07-12 19:28:51 -04:00
parent 0470485ff9
commit fef55ad1ca
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86
4 changed files with 4 additions and 6 deletions

View file

@ -248,7 +248,7 @@ in {
# Register packages for udev. # Register packages for udev.
services.udev.packages = with pkgs; [ services.udev.packages = with pkgs; [
budgie.magpie magpie
]; ];
# Shell integration for MATE Terminal. # Shell integration for MATE Terminal.

View file

@ -4,7 +4,6 @@
fetchFromGitHub, fetchFromGitHub,
accountsservice, accountsservice,
alsa-lib, alsa-lib,
budgie,
budgie-screensaver, budgie-screensaver,
docbook-xsl-nons, docbook-xsl-nons,
glib, glib,
@ -24,6 +23,7 @@
libpulseaudio, libpulseaudio,
libuuid, libuuid,
libwnck, libwnck,
magpie,
mesa, mesa,
meson, meson,
ninja, ninja,
@ -93,7 +93,7 @@ stdenv.mkDerivation (finalAttrs: {
libpulseaudio libpulseaudio
libuuid libuuid
libwnck libwnck
budgie.magpie magpie
mesa mesa
polkit polkit
sassc sassc

View file

@ -5,7 +5,5 @@ lib.makeScope newScope (
let let
inherit (self) callPackage; inherit (self) callPackage;
in in
{ { }
magpie = callPackage ./magpie { };
}
) )