tepl: 4.4.0 -> 5.0.0
This commit is contained in:
parent
7206a14260
commit
ca51986f03
@ -1,28 +1,39 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv
|
||||||
, amtk, gnome3, gtk3, gtksourceview4, libuchardet, libxml2, pkgconfig }:
|
, fetchurl
|
||||||
let
|
, meson
|
||||||
version = "4.4.0";
|
, ninja
|
||||||
|
, amtk
|
||||||
|
, gnome3
|
||||||
|
, gobject-introspection
|
||||||
|
, gtk3
|
||||||
|
, gtksourceview4
|
||||||
|
, icu
|
||||||
|
, pkg-config
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
pname = "tepl";
|
pname = "tepl";
|
||||||
in stdenv.mkDerivation {
|
version = "5.0.0";
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "0mm2z849hnni7597an05mrv0dckrxjngpf2xfa0g5s17i8x6gxp6";
|
sha256 = "0x2s0ks575b57jdqnp9r9miz40pm705n2dlj2k8bfj1hyl22kgf6";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig
|
meson
|
||||||
|
ninja
|
||||||
|
gobject-introspection
|
||||||
|
pkg-config
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libxml2
|
icu
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
amtk
|
amtk
|
||||||
gtksourceview4
|
gtksourceview4
|
||||||
libuchardet
|
|
||||||
gtk3
|
gtk3
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -38,8 +49,8 @@ in stdenv.mkDerivation {
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://wiki.gnome.org/Projects/Tepl";
|
homepage = "https://wiki.gnome.org/Projects/Tepl";
|
||||||
description = "Text editor product line";
|
description = "Text editor product line";
|
||||||
maintainers = [ maintainers.manveru ];
|
maintainers = teams.gnome.members ++ [ maintainers.manveru ];
|
||||||
license = licenses.lgpl21Plus;
|
license = licenses.lgpl3Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user