From 80ead1c51d07be9b9363d4f3094dec4d5823ed39 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Mon, 29 Apr 2024 21:39:00 +0800 Subject: libgedit-tepl: 6.8.0 → 6.10.0, renamed from tepl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/gedit-technology/libgedit-tepl/compare/6.8.0...6.10.0 --- pkgs/development/libraries/tepl/default.nix | 70 ----------------------------- 1 file changed, 70 deletions(-) delete mode 100644 pkgs/development/libraries/tepl/default.nix (limited to 'pkgs/development/libraries') diff --git a/pkgs/development/libraries/tepl/default.nix b/pkgs/development/libraries/tepl/default.nix deleted file mode 100644 index 5ceb76b9bf7f5..0000000000000 --- a/pkgs/development/libraries/tepl/default.nix +++ /dev/null @@ -1,70 +0,0 @@ -{ stdenv -, lib -, fetchurl -, meson -, mesonEmulatorHook -, ninja -, gnome -, gobject-introspection -, gtk3 -, icu -, libgedit-amtk -, libgedit-gtksourceview -, pkg-config -, gtk-doc -, docbook-xsl-nons -}: - -stdenv.mkDerivation rec { - pname = "tepl"; - version = "6.8.0"; - - outputs = [ "out" "dev" "devdoc" ]; - - src = fetchurl { - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "Rubl8b/bxS5ZVvBq3VdenHaXxnPVPTgD3+do9JC1YPA="; - }; - - strictDeps = true; - nativeBuildInputs = [ - meson - ninja - gobject-introspection - pkg-config - gtk-doc - docbook-xsl-nons - ] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ - mesonEmulatorHook - ]; - - buildInputs = [ - icu - ]; - - propagatedBuildInputs = [ - gtk3 - libgedit-amtk - libgedit-gtksourceview - ]; - - doCheck = false; - # TODO: one test fails because of - # (./test-file-metadata:20931): Tepl-WARNING **: 14:41:36.942: GVfs metadata - # is not supported. Fallback to TeplMetadataManager. Either GVfs is not - # correctly installed or GVfs metadata are not supported on this platform. In - # the latter case, you should configure Tepl with --disable-gvfs-metadata. - - passthru.updateScript = gnome.updateScript { - packageName = pname; - versionPolicy = "odd-unstable"; - }; - - meta = with lib; { - homepage = "https://wiki.gnome.org/Projects/Tepl"; - description = "Text editor product line"; - maintainers = with maintainers; [ manveru bobby285271 ]; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - }; -} -- cgit 1.4.1