about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorTrolli Schmittlauch <t.schmittlauch+nixos@orlives.de>2019-10-02 22:05:43 +0200
committerTrolli Schmittlauch <t.schmittlauch+nixos@orlives.de>2019-10-02 22:07:42 +0200
commitf855e588b74d1b1d3fe5aac47482a6dc17703e34 (patch)
tree3dd86ed65d31aec08111c12e23c6af5f3d82ff7a /pkgs/applications
parente1c7d2079336148dd48cdd17cfc7b35e0d1559b3 (diff)
downloadnixlib-f855e588b74d1b1d3fe5aac47482a6dc17703e34.tar
nixlib-f855e588b74d1b1d3fe5aac47482a6dc17703e34.tar.gz
nixlib-f855e588b74d1b1d3fe5aac47482a6dc17703e34.tar.bz2
nixlib-f855e588b74d1b1d3fe5aac47482a6dc17703e34.tar.lz
nixlib-f855e588b74d1b1d3fe5aac47482a6dc17703e34.tar.xz
nixlib-f855e588b74d1b1d3fe5aac47482a6dc17703e34.tar.zst
nixlib-f855e588b74d1b1d3fe5aac47482a6dc17703e34.zip
corebird: drop package due to discontinuation, recommend `cawbird` as alternative
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/corebird/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/applications/networking/corebird/default.nix b/pkgs/applications/networking/corebird/default.nix
deleted file mode 100644
index 73c0e234945e..000000000000
--- a/pkgs/applications/networking/corebird/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, fetchFromGitHub, glib, gtk3, json-glib, sqlite, libsoup, gettext, vala_0_40
-, meson, ninja, pkgconfig, gnome3, gst_all_1, wrapGAppsHook, gobject-introspection
-, glib-networking, python3 }:
-
-stdenv.mkDerivation rec {
-  version = "1.7.4";
-  pname = "corebird";
-
-  src = fetchFromGitHub {
-    owner = "baedert";
-    repo = "corebird";
-    rev = version;
-    sha256 = "0qjffsmg1hm64dgsbkfwzbzy9q4xa1q4fh4h8ni8a2b1p3h80x7n";
-  };
-
-  nativeBuildInputs = [
-    meson ninja vala_0_40 pkgconfig wrapGAppsHook python3
-    gobject-introspection # for setup hook
-  ];
-
-  buildInputs = [
-    glib gtk3 json-glib sqlite libsoup gettext gnome3.dconf gnome3.gspell glib-networking
-  ] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-bad (gst-plugins-good.override { gtkSupport = true; }) gst-libav ]);
-
-  postPatch = ''
-    chmod +x data/meson_post_install.py # patchShebangs requires executable file
-    patchShebangs data/meson_post_install.py
-  '';
-
-  meta = {
-    description = "Native GTK Twitter client for the Linux desktop";
-    longDescription = "Corebird is a modern, easy and fun Twitter client.";
-    homepage = https://corebird.baedert.org/;
-    license = stdenv.lib.licenses.gpl3;
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = [ stdenv.lib.maintainers.jonafato ];
-  };
-}