about summary refs log tree commit diff
path: root/pkgs/os-specific/darwin
diff options
context:
space:
mode:
authorYuriy Taraday <yorik.sar@gmail.com>2023-11-04 08:35:02 +0100
committerYuriy Taraday <yorik.sar@gmail.com>2023-11-04 08:40:35 +0100
commit908c9e68347c143dd8c79fb1323be2d2aa17f3fe (patch)
treecfccbae4089eda9c0eb6a908c9efcaf3e60a1f5e /pkgs/os-specific/darwin
parentf1e94c9d572aac95bf18dfeba9d687cde4bd860b (diff)
dark-mode-notify: migrate to pkgs/by-name
Diffstat (limited to 'pkgs/os-specific/darwin')
-rw-r--r--pkgs/os-specific/darwin/dark-mode-notify/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/os-specific/darwin/dark-mode-notify/default.nix b/pkgs/os-specific/darwin/dark-mode-notify/default.nix
deleted file mode 100644
index 31d1a2c8d8b9f..0000000000000
--- a/pkgs/os-specific/darwin/dark-mode-notify/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ lib
-, fetchFromGitHub
-, stdenv
-, swift
-, swiftpm
-, darwin
-}:
-
-stdenv.mkDerivation (final: {
-  pname = "dark-mode-notify";
-  version = "unstable-2022-07-18";
-
-  src = fetchFromGitHub {
-    owner = "bouk";
-    repo = "dark-mode-notify";
-    rev = "4d7fe211f81c5b67402fad4bed44995344a260d1";
-    hash = "sha256-LsAQ5v5jgJw7KsJnQ3Mh6+LNj1EMHICMoD5WzF3hRmU=";
-  };
-
-  nativeBuildInputs = [
-    swift
-    swiftpm
-  ];
-
-  buildInputs = with darwin.apple_sdk.frameworks; [
-    Foundation
-    Cocoa
-  ];
-
-  makeFlags = [ "prefix=$(out)" ];
-
-  meta = {
-    description = "Run a script whenever dark mode changes in macOS";
-    homepage = "https://github.com/bouk/dark-mode-notify";
-    # Doesn't build on x86_64 because of some CoreGraphics issue, even with SDK 11.0
-    platforms = [ "aarch64-darwin" ];
-    license = lib.licenses.mit;
-    maintainers = with lib.maintainers; [ YorikSar ];
-  };
-})