about summary refs log tree commit diff
path: root/pkgs/applications/audio/g4music/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/g4music/default.nix')
-rw-r--r--pkgs/applications/audio/g4music/default.nix60
1 files changed, 0 insertions, 60 deletions
diff --git a/pkgs/applications/audio/g4music/default.nix b/pkgs/applications/audio/g4music/default.nix
deleted file mode 100644
index da7e7777af5ff..0000000000000
--- a/pkgs/applications/audio/g4music/default.nix
+++ /dev/null
@@ -1,60 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitLab
-, desktop-file-utils
-, gitUpdater
-, gobject-introspection
-, gst_all_1
-, gtk4
-, libadwaita
-, meson
-, ninja
-, pkg-config
-, vala
-, wrapGAppsHook4
-}:
-stdenv.mkDerivation (finalAttrs: {
-  pname = "g4music";
-  version = "3.6.2";
-
-  src = fetchFromGitLab {
-    domain = "gitlab.gnome.org";
-    owner = "neithern";
-    repo = "g4music";
-    rev = "v${finalAttrs.version}";
-    hash = "sha256-yNKDTcLunTLhAtOBrjuycw0rrdCSwmhhVyBg3AfMUCQ=";
-  };
-
-  nativeBuildInputs = [
-    desktop-file-utils
-    gobject-introspection
-    meson
-    ninja
-    pkg-config
-    vala
-    wrapGAppsHook4
-  ];
-
-  buildInputs = [
-    gtk4
-    libadwaita
-  ] ++ (with gst_all_1; [
-    gst-plugins-bad
-    gst-plugins-base
-    gst-plugins-good
-    gstreamer
-  ]);
-
-  passthru.updateScript = gitUpdater {
-    rev-prefix = "v";
-  };
-
-  meta = with lib; {
-    description = "Beautiful, fast, fluent, light weight music player written in GTK4";
-    mainProgram = "g4music";
-    homepage = "https://gitlab.gnome.org/neithern/g4music";
-    license = licenses.gpl3Only;
-    maintainers = with maintainers; [ magnouvean ];
-    platforms = platforms.linux;
-  };
-})