text-engine: remove package

I forgot to remove this when upstreaming the gnome-extension-manager
package.
This commit is contained in:
Gabriel Arazas 2023-04-22 22:07:14 +08:00
parent 39d2c78335
commit 6ce4b3a486
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 37 deletions

View File

@ -62,7 +62,6 @@ let
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { }; callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
pop-launcher-plugin-jetbrains = callPackage ./pop-launcher-plugin-jetbrains { }; pop-launcher-plugin-jetbrains = callPackage ./pop-launcher-plugin-jetbrains { };
swh = callPackage ./software-heritage { python3Packages = python310Packages; }; swh = callPackage ./software-heritage { python3Packages = python310Packages; };
text-engine = callPackage ./text-engine.nix { };
tic-80 = callPackage ./tic-80 { }; tic-80 = callPackage ./tic-80 { };
thokr = callPackage ./thokr.nix { }; thokr = callPackage ./thokr.nix { };
segno = callPackage ./segno.nix { }; segno = callPackage ./segno.nix { };

View File

@ -1,36 +0,0 @@
{ stdenv
, lib
, fetchFromGitHub
, meson
, ninja
, json-glib
, gtk4
, libxml2
, gobject-introspection
, pkg-config
, libadwaita
}:
stdenv.mkDerivation rec {
pname = "text-engine";
version = "0.1.0";
src = fetchFromGitHub {
owner = "mjakeman";
repo = pname;
rev = "v${version}";
sha256 = "sha256-TVQD5sAJJkcs/w4K5B3e+hvfTcoGXunsceada6k/Hjs=";
};
nativeBuildInputs = [ gobject-introspection gtk4 meson ninja pkg-config ];
buildInputs = [ libadwaita json-glib libxml2 ];
meta = with lib; {
description = "Rich text framework for GTK";
homepage = "https://github.com/mjakeman/text-engine";
# TODO: Change this, plz.
# Seems to be a modified version of MIT license.
license = licenses.mit;
};
}