Unverified Commit 04c54e94 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

gfbgraph: drop (#400310)

parents f0b509d3 e186cebf
Loading
Loading
Loading
Loading
+0 −71
Original line number Diff line number Diff line
{
  stdenv,
  lib,
  fetchurl,
  pkg-config,
  glib,
  librest,
  gnome-online-accounts,
  gnome,
  libsoup_2_4,
  json-glib,
  gobject-introspection,
  gtk-doc,
  docbook-xsl-nons,
}:

stdenv.mkDerivation rec {
  pname = "gfbgraph";
  version = "0.2.5";

  outputs = [
    "out"
    "dev"
    "devdoc"
  ];

  src = fetchurl {
    url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
    sha256 = "nLOBs/eLoRNt+Xrz8G47EdzCqzOawI907aD4BX1mA+M=";
  };

  nativeBuildInputs = [
    pkg-config
    gobject-introspection
    gtk-doc
    docbook-xsl-nons
  ];

  buildInputs = [
    glib
    gnome-online-accounts
  ];

  propagatedBuildInputs = [
    libsoup_2_4
    json-glib
    librest
  ];

  configureFlags = [
    "--enable-introspection"
    "--enable-gtk-doc"
  ];

  enableParallelBuilding = true;

  passthru = {
    updateScript = gnome.updateScript {
      packageName = pname;
      versionPolicy = "odd-unstable";
    };
  };

  meta = with lib; {
    homepage = "https://gitlab.gnome.org/GNOME/libgfbgraph";
    description = "GLib/GObject wrapper for the Facebook Graph API";
    maintainers = teams.gnome.members;
    license = licenses.lgpl21Plus;
    platforms = platforms.linux;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -690,6 +690,7 @@ mapAliases {
  gdome2 = throw "'gdome2' has been removed from nixpkgs, as it is umaintained and obsolete"; # Added 2024-12-29
  geocode-glib = "throw 'geocode-glib' has been removed, as it was unused and used outdated libraries"; # Added 2025-04-16
  geos_3_11 = throw "geos_3_11 has been removed from nixpgks. Please use a more recent 'geos' instead.";
  gfbgraph = throw "'gfbgraph' has been removed as it was archived upstream and unused in nixpkgs"; # Added 2025-04-20
  gfortran48 = throw "'gfortran48' has been removed from nixpkgs"; # Added 2024-09-10
  gfortran49 = throw "'gfortran49' has been removed from nixpkgs"; # Added 2024-09-11
  gfortran7 = throw "gfortran7 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-11-20