notes: move to by-name

This commit is contained in:
zendo
2024-08-31 21:00:28 +08:00
parent 58939e5336
commit 7bd29c7ddf
2 changed files with 6 additions and 12 deletions
@@ -2,10 +2,8 @@
, stdenv
, fetchFromGitHub
, cmake
, wrapQtAppsHook
, qtbase
, qtdeclarative
, Cocoa
, qt6
, darwin
}:
stdenv.mkDerivation (finalAttrs: {
@@ -24,14 +22,14 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [
cmake
wrapQtAppsHook
qt6.wrapQtAppsHook
];
buildInputs = [
qtbase
qtdeclarative
qt6.qtbase
qt6.qtdeclarative
] ++ lib.optionals stdenv.isDarwin [
Cocoa
darwin.apple_sdk.frameworks.Cocoa
];
postInstall = lib.optionalString stdenv.isDarwin ''
-4
View File
@@ -10782,10 +10782,6 @@ with pkgs;
notify-osd = callPackage ../applications/misc/notify-osd { };
notes = qt6Packages.callPackage ../applications/office/notes {
inherit (darwin.apple_sdk.frameworks) Cocoa;
};
notes-up = callPackage ../applications/office/notes-up { };
notify-osd-customizable = callPackage ../applications/misc/notify-osd-customizable { };