pix: Move from cinnamon scope to top-level

This commit is contained in:
Bobby Rong
2024-07-21 21:17:05 +08:00
parent 029c124ea8
commit 00258aaa85
2 changed files with 3 additions and 3 deletions
@@ -28,7 +28,7 @@
, python3
, desktop-file-utils
, itstool
, xapp
, cinnamon
}:
stdenv.mkDerivation rec {
@@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
libtiff
libwebp
libX11
xapp
cinnamon.xapp
];
postPatch = ''
+1 -1
View File
@@ -46,7 +46,6 @@ lib.makeScope pkgs.newScope (self: with self; {
mint-x-icons = callPackage ./mint-x-icons { };
mint-y-icons = callPackage ./mint-y-icons { };
muffin = callPackage ./muffin { };
pix = callPackage ./pix { };
xapp = callPackage ./xapp { };
warpinator = callPackage ./warpinator { };
xreader = callPackage ./xreader { };
@@ -54,5 +53,6 @@ lib.makeScope pkgs.newScope (self: with self; {
}) // lib.optionalAttrs config.allowAliases {
# Aliases need to be outside the scope or they will shadow the attributes from parent scope.
bulky = lib.warn "cinnamon.bulky was moved to top-level. Please use pkgs.bulky directly." pkgs.bulky; # Added on 2024-07-14
pix = lib.warn "cinnamon.pix was moved to top-level. Please use pkgs.pix directly." pkgs.pix; # Added on 2024-07-14
xapps = pkgs.cinnamon.xapp; # added 2022-07-27
}