summary refs log tree commit diff
path: root/pkgs/applications/video/celluloid/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/celluloid/default.nix')
-rw-r--r--pkgs/applications/video/celluloid/default.nix68
1 files changed, 0 insertions, 68 deletions
diff --git a/pkgs/applications/video/celluloid/default.nix b/pkgs/applications/video/celluloid/default.nix
deleted file mode 100644
index 1248fec027d2f..0000000000000
--- a/pkgs/applications/video/celluloid/default.nix
+++ /dev/null
@@ -1,68 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, appstream-glib
-, desktop-file-utils
-, glib
-, gtk4
-, libepoxy
-, libadwaita
-, meson
-, mpv
-, ninja
-, nix-update-script
-, pkg-config
-, python3
-, wrapGAppsHook4
-}:
-
-stdenv.mkDerivation rec {
-  pname = "celluloid";
-  version = "0.25";
-
-  src = fetchFromGitHub {
-    owner = "celluloid-player";
-    repo = "celluloid";
-    rev = "v${version}";
-    hash = "sha256-GCRpcC/olMUbMG2fadNcXTKF/Zl0+GY2+eSRLQhnWxI=";
-  };
-
-  nativeBuildInputs = [
-    appstream-glib
-    desktop-file-utils
-    meson
-    ninja
-    pkg-config
-    python3
-    wrapGAppsHook4
-  ];
-
-  buildInputs = [
-    glib
-    gtk4
-    libadwaita
-    libepoxy
-    mpv
-  ];
-
-  postPatch = ''
-    patchShebangs meson-post-install.py src/generate-authors.py
-  '';
-
-  doCheck = true;
-
-  passthru.updateScript = nix-update-script { };
-
-  meta = with lib; {
-    homepage = "https://github.com/celluloid-player/celluloid";
-    description = "Simple GTK frontend for the mpv video player";
-    longDescription = ''
-      Celluloid (formerly GNOME MPV) is a simple GTK+ frontend for mpv.
-      Celluloid interacts with mpv via the client API exported by libmpv,
-      allowing access to mpv's powerful playback capabilities.
-    '';
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = platforms.linux;
-  };
-}