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

46 lines
1.2 KiB
Nix
Raw Normal View History

2018-06-21 11:08:26 +00:00
{ stdenv, fetchurl
, amtk, gnome3, gtk3, gtksourceview4, libuchardet, libxml2, pkgconfig }:
2018-06-21 11:08:26 +00:00
let
version = "4.4.0";
2018-06-21 11:08:26 +00:00
pname = "tepl";
in stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0mm2z849hnni7597an05mrv0dckrxjngpf2xfa0g5s17i8x6gxp6";
2018-06-21 11:08:26 +00:00
};
nativeBuildInputs = [
pkgconfig
];
buildInputs = [
libxml2
];
propagatedBuildInputs = [
amtk
2018-06-21 11:08:26 +00:00
gtksourceview4
libuchardet
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";
maintainers = [ maintainers.manveru ];
license = licenses.lgpl21Plus;
platforms = platforms.linux;
};
}