2020-02-14 06:09:49 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, perl, itstool, isocodes, enchant, libxml2, python3, gnome3, gtksourceview3, libpeas, mate, wrapGAppsHook }:
|
2017-08-06 08:40:13 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "pluma";
|
2020-02-12 09:51:24 -08:00
|
|
|
version = "1.24.0";
|
2017-08-06 08:40:13 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 14:37:37 -08:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-02-12 09:51:24 -08:00
|
|
|
sha256 = "1vmndhlhy3qkf3xs5kkv0xhbv5ar25pqz0kp17hc4qhgjzycfr0r";
|
2017-08-06 08:40:13 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2020-02-14 06:09:49 -08:00
|
|
|
gettext
|
|
|
|
perl
|
2017-08-06 08:40:13 -07:00
|
|
|
itstool
|
|
|
|
isocodes
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
enchant
|
|
|
|
libxml2
|
2019-04-21 05:02:49 -07:00
|
|
|
python3
|
2019-03-22 21:50:12 -07:00
|
|
|
gtksourceview3
|
|
|
|
libpeas
|
2019-02-13 13:47:50 -08:00
|
|
|
gnome3.adwaita-icon-theme
|
2017-08-06 08:40:13 -07:00
|
|
|
mate.mate-desktop
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Powerful text editor for the MATE desktop";
|
2020-02-12 09:51:24 -08:00
|
|
|
homepage = "https://mate-desktop.org";
|
2017-08-06 08:40:13 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|