nixpkgs/pkgs/development/libraries/tepl/default.nix

59 lines
1.3 KiB
Nix
Raw Normal View History

2020-08-21 20:11:55 +00:00
{ stdenv
, fetchurl
, meson
, ninja
, amtk
, gnome3
, gobject-introspection
, gtk3
, gtksourceview4
, icu
, pkg-config
}:
stdenv.mkDerivation rec {
2018-06-21 11:08:26 +00:00
pname = "tepl";
2020-08-21 20:11:55 +00:00
version = "5.0.0";
2018-06-21 11:08:26 +00:00
outputs = [ "out" "dev" ];
2018-06-21 11:08:26 +00:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-08-21 20:11:55 +00:00
sha256 = "0x2s0ks575b57jdqnp9r9miz40pm705n2dlj2k8bfj1hyl22kgf6";
2018-06-21 11:08:26 +00:00
};
nativeBuildInputs = [
2020-08-21 20:11:55 +00:00
meson
ninja
gobject-introspection
pkg-config
2018-06-21 11:08:26 +00:00
];
buildInputs = [
2020-08-21 20:11:55 +00:00
icu
];
propagatedBuildInputs = [
amtk
2018-06-21 11:08:26 +00:00
gtksourceview4
gtk3
2018-06-21 11:08:26 +00:00
];
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 = gnome3.updateScript { packageName = pname; };
meta = with stdenv.lib; {
homepage = "https://wiki.gnome.org/Projects/Tepl";
2018-06-21 11:08:26 +00:00
description = "Text editor product line";
2020-08-21 20:11:55 +00:00
maintainers = teams.gnome.members ++ [ maintainers.manveru ];
license = licenses.lgpl3Plus;
2018-06-21 11:08:26 +00:00
platforms = platforms.linux;
};
}