about summary refs log tree commit diff
path: root/pkgs/development/libraries/libshumate/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/libshumate/default.nix')
-rw-r--r--pkgs/development/libraries/libshumate/default.nix101
1 files changed, 0 insertions, 101 deletions
diff --git a/pkgs/development/libraries/libshumate/default.nix b/pkgs/development/libraries/libshumate/default.nix
deleted file mode 100644
index 17783999b53c..000000000000
--- a/pkgs/development/libraries/libshumate/default.nix
+++ /dev/null
@@ -1,101 +0,0 @@
-{ lib
-, stdenv
-, fetchurl
-, gi-docgen
-, meson
-, ninja
-, pkg-config
-, vala
-, gobject-introspection
-, gperf
-, glib
-, cairo
-, sqlite
-, libsoup_3
-, gtk4
-, libsysprof-capture
-, json-glib
-, protobufc
-, xvfb-run
-, gnome
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "libshumate";
-  version = "1.2.3";
-
-  outputs = [ "out" "dev" "devdoc" ];
-  outputBin = "devdoc"; # demo app
-
-  src = fetchurl {
-    url = "mirror://gnome/sources/libshumate/${lib.versions.majorMinor finalAttrs.version}/libshumate-${finalAttrs.version}.tar.xz";
-    hash = "sha256-TMbNc/bYcVX2J2arY+WqzEc72aDONZBpMqz8g56WTAw=";
-  };
-
-  depsBuildBuild = [
-    # required to find native gi-docgen when cross compiling
-    pkg-config
-  ];
-
-  nativeBuildInputs = [
-    gi-docgen
-    meson
-    ninja
-    pkg-config
-    vala
-    gobject-introspection
-    gperf
-  ];
-
-  buildInputs = [
-    glib
-    cairo
-    sqlite
-    libsoup_3
-    gtk4
-    libsysprof-capture
-    json-glib
-    protobufc
-  ];
-
-  nativeCheckInputs = [
-    xvfb-run
-  ];
-
-  mesonFlags = [
-    "-Ddemos=true"
-  ];
-
-  doCheck = !stdenv.isDarwin;
-
-  checkPhase = ''
-    runHook preCheck
-
-    env \
-      HOME="$TMPDIR" \
-      GTK_A11Y=none \
-      xvfb-run meson test --print-errorlogs
-
-    runHook postCheck
-  '';
-
-  postFixup = ''
-    # Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
-    moveToOutput share/doc/libshumate-1.0 "$devdoc"
-  '';
-
-  passthru = {
-    updateScript = gnome.updateScript {
-      packageName = "libshumate";
-    };
-  };
-
-  meta = with lib; {
-    description = "GTK toolkit providing widgets for embedded maps";
-    mainProgram = "shumate-demo";
-    homepage = "https://gitlab.gnome.org/GNOME/libshumate";
-    license = licenses.lgpl21Plus;
-    maintainers = teams.gnome.members;
-    platforms = platforms.unix;
-  };
-})