pluma: init at 1.18.2

romildo c6207abe 4b0afc16

+39
+1
pkgs/desktops/mate/default.nix
··· 2 2 rec { 3 3 atril = callPackage ./atril { }; 4 4 caja = callPackage ./caja { }; 5 + pluma = callPackage ./pluma { }; 5 6 mate-common = callPackage ./mate-common { }; 6 7 mate-desktop = callPackage ./mate-desktop { }; 7 8 mate-icon-theme = callPackage ./mate-icon-theme { };
+38
pkgs/desktops/mate/pluma/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, intltool, itstool, isocodes, enchant, libxml2, python, gnome3, mate, wrapGAppsHook }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "pluma-${version}"; 5 + version = "${major-ver}.${minor-ver}"; 6 + major-ver = "1.18"; 7 + minor-ver = "2"; 8 + 9 + src = fetchurl { 10 + url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; 11 + sha256 = "1z0938yiygxipj2a77n9dv8v4253snrc5gbbnarcnim9xba2j3zz"; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + pkgconfig 16 + intltool 17 + itstool 18 + isocodes 19 + wrapGAppsHook 20 + ]; 21 + 22 + buildInputs = [ 23 + enchant 24 + libxml2 25 + python 26 + gnome3.gtksourceview 27 + gnome3.libpeas 28 + mate.mate-desktop 29 + ]; 30 + 31 + meta = { 32 + description = "Powerful text editor for the MATE desktop"; 33 + homepage = http://mate-desktop.org; 34 + license = stdenv.lib.licenses.gpl2; 35 + platforms = stdenv.lib.platforms.unix; 36 + maintainers = [ stdenv.lib.maintainers.romildo ]; 37 + }; 38 + }