···11-{ stdenv
22-, lib
33-, fetchurl
44-, meson
55-, mesonEmulatorHook
66-, ninja
77-, gnome
88-, gobject-introspection
99-, gtk3
1010-, icu
1111-, libgedit-amtk
1212-, libgedit-gtksourceview
1313-, pkg-config
1414-, gtk-doc
1515-, docbook-xsl-nons
1616-}:
1717-1818-stdenv.mkDerivation rec {
1919- pname = "tepl";
2020- version = "6.8.0";
2121-2222- outputs = [ "out" "dev" "devdoc" ];
2323-2424- src = fetchurl {
2525- url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2626- sha256 = "Rubl8b/bxS5ZVvBq3VdenHaXxnPVPTgD3+do9JC1YPA=";
2727- };
2828-2929- strictDeps = true;
3030- nativeBuildInputs = [
3131- meson
3232- ninja
3333- gobject-introspection
3434- pkg-config
3535- gtk-doc
3636- docbook-xsl-nons
3737- ] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
3838- mesonEmulatorHook
3939- ];
4040-4141- buildInputs = [
4242- icu
4343- ];
4444-4545- propagatedBuildInputs = [
4646- gtk3
4747- libgedit-amtk
4848- libgedit-gtksourceview
4949- ];
5050-5151- doCheck = false;
5252- # TODO: one test fails because of
5353- # (./test-file-metadata:20931): Tepl-WARNING **: 14:41:36.942: GVfs metadata
5454- # is not supported. Fallback to TeplMetadataManager. Either GVfs is not
5555- # correctly installed or GVfs metadata are not supported on this platform. In
5656- # the latter case, you should configure Tepl with --disable-gvfs-metadata.
5757-5858- passthru.updateScript = gnome.updateScript {
5959- packageName = pname;
6060- versionPolicy = "odd-unstable";
6161- };
6262-6363- meta = with lib; {
6464- homepage = "https://wiki.gnome.org/Projects/Tepl";
6565- description = "Text editor product line";
6666- maintainers = with maintainers; [ manveru bobby285271 ];
6767- license = licenses.lgpl3Plus;
6868- platforms = platforms.linux;
6969- };
7070-}
+1
pkgs/top-level/aliases.nix
···12291229 teleport_12 = throw "teleport 12 has been removed as it is EOL. Please upgrade to Teleport 13 or later"; # Added 2024-02-04
12301230 teleprompter = throw "teleprompter has been removed. reason: upstream dead and does not work with recent electron versions"; # Added 2024-03-14
12311231 tensile = throw "'tensile' has been replaced with 'rocmPackages.tensile'"; # Added 2023-10-08
12321232+ tepl = libgedit-tepl; # Added 2024-04-29
12321233 testVersion = testers.testVersion; # Added 2022-04-20
12331234 tfplugindocs = terraform-plugin-docs; # Added 2023-11-01
12341235 thrift-0_10 = throw "'thrift-0_10' has been removed because it is impacted by security issues and not used in nixpkgs, move to 'thrift'"; # Added 2024-03-17