nixpkgs/pkgs/desktops/mate/pluma/default.nix

43 lines
1 KiB
Nix
Raw Normal View History

2021-04-02 19:58:16 +00:00
{ lib, stdenv, fetchurl, pkg-config, gettext, perl, itstool, isocodes, enchant, libxml2, python3, gnome3, gtksourceview3, libpeas, mate, wrapGAppsHook, mateUpdateScript }:
2017-08-06 15:40:13 +00:00
stdenv.mkDerivation rec {
pname = "pluma";
2020-09-18 15:15:22 +00:00
version = "1.24.1";
2017-08-06 15:40:13 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-09-18 15:15:22 +00:00
sha256 = "1sgc5f480icr2ans6gd3akvcax58mr4jp3zjk3xn7bx1mw9i299f";
2017-08-06 15:40:13 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
perl
2017-08-06 15:40:13 +00:00
itstool
isocodes
wrapGAppsHook
];
buildInputs = [
enchant
libxml2
2019-04-21 12:02:49 +00:00
python3
2019-03-23 04:50:12 +00:00
gtksourceview3
libpeas
2019-02-13 21:47:50 +00:00
gnome3.adwaita-icon-theme
2017-08-06 15:40:13 +00:00
mate.mate-desktop
];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
2021-04-02 19:58:16 +00:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
2017-08-06 15:40:13 +00:00
meta = {
description = "Powerful text editor for the MATE desktop";
2020-02-12 17:51:24 +00:00
homepage = "https://mate-desktop.org";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.romildo ];
2017-08-06 15:40:13 +00:00
};
}