about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-03-13 12:01:25 +0000
committerGitHub <noreply@github.com>2024-03-13 12:01:25 +0000
commitcecf050e96fa1495e6dcf7b2c7395e0e3359ff05 (patch)
tree751ae53b00eb92d24a775ef9e7277200b7c0cbb5 /pkgs/applications/audio
parent68befa13bb19eff9aa59d124b6d5801b99e26bc2 (diff)
parenta6af0d92679222ba704841a6515d9a7e022af6fd (diff)
downloadnixlib-cecf050e96fa1495e6dcf7b2c7395e0e3359ff05.tar
nixlib-cecf050e96fa1495e6dcf7b2c7395e0e3359ff05.tar.gz
nixlib-cecf050e96fa1495e6dcf7b2c7395e0e3359ff05.tar.bz2
nixlib-cecf050e96fa1495e6dcf7b2c7395e0e3359ff05.tar.lz
nixlib-cecf050e96fa1495e6dcf7b2c7395e0e3359ff05.tar.xz
nixlib-cecf050e96fa1495e6dcf7b2c7395e0e3359ff05.tar.zst
nixlib-cecf050e96fa1495e6dcf7b2c7395e0e3359ff05.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/gtkcord4/default.nix68
1 files changed, 0 insertions, 68 deletions
diff --git a/pkgs/applications/audio/gtkcord4/default.nix b/pkgs/applications/audio/gtkcord4/default.nix
deleted file mode 100644
index e75e27e7d792..000000000000
--- a/pkgs/applications/audio/gtkcord4/default.nix
+++ /dev/null
@@ -1,68 +0,0 @@
-{ buildGoModule
-, cairo
-, fetchFromGitHub
-, gdk-pixbuf
-, glib
-, gobject-introspection
-, graphene
-, gst_all_1
-, gtk4
-, lib
-, libadwaita
-, libcanberra-gtk3
-, pango
-, pkg-config
-, sound-theme-freedesktop
-, wrapGAppsHook4
-}:
-
-buildGoModule rec {
-  pname = "gtkcord4";
-  version = "0.0.19";
-
-  src = fetchFromGitHub {
-    owner = "diamondburned";
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-TOrAUTYS4J4W1wZvP1TxZf5Nel29YCPoWPN7GYNomkc=";
-  };
-
-  nativeBuildInputs = [
-    gobject-introspection
-    pkg-config
-    wrapGAppsHook4
-  ];
-
-  buildInputs = [
-    cairo
-    gdk-pixbuf
-    glib
-    graphene
-    gtk4
-    pango
-    # Optional according to upstream but required for sound and video
-    gst_all_1.gst-plugins-bad
-    gst_all_1.gst-plugins-base
-    gst_all_1.gst-plugins-good
-    gst_all_1.gst-plugins-ugly
-    gst_all_1.gstreamer
-    libcanberra-gtk3
-    sound-theme-freedesktop
-    libadwaita
-  ];
-
-  postInstall = ''
-    install -D -m 444 -t $out/share/applications nix/so.libdb.gtkcord4.desktop
-    install -D -m 444 internal/icons/hicolor/scalable/apps/logo.svg $out/share/icons/hicolor/scalable/apps/gtkcord4.svg
-  '';
-
-  vendorHash = "sha256-dJm+v7/2+TQWoU7G1uOpie6KN5W0JqfLU4mF8mghV4A=";
-
-  meta = with lib; {
-    description = "GTK4 Discord client in Go, attempt #4";
-    homepage = "https://github.com/diamondburned/gtkcord4";
-    license = licenses.gpl3Only;
-    mainProgram = "gtkcord4";
-    maintainers = with maintainers; [ hmenke urandom aleksana ];
-  };
-}