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

44 lines
1.1 KiB
Nix
Raw Normal View History

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