pluma: init at 1.18.2
This commit is contained in:
parent
4b0afc169d
commit
c6207abe9c
@ -2,6 +2,7 @@
|
||||
rec {
|
||||
atril = callPackage ./atril { };
|
||||
caja = callPackage ./caja { };
|
||||
pluma = callPackage ./pluma { };
|
||||
mate-common = callPackage ./mate-common { };
|
||||
mate-desktop = callPackage ./mate-desktop { };
|
||||
mate-icon-theme = callPackage ./mate-icon-theme { };
|
||||
|
38
pkgs/desktops/mate/pluma/default.nix
Normal file
38
pkgs/desktops/mate/pluma/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, itstool, isocodes, enchant, libxml2, python, gnome3, mate, wrapGAppsHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pluma-${version}";
|
||||
version = "${major-ver}.${minor-ver}";
|
||||
major-ver = "1.18";
|
||||
minor-ver = "2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
||||
sha256 = "1z0938yiygxipj2a77n9dv8v4253snrc5gbbnarcnim9xba2j3zz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
intltool
|
||||
itstool
|
||||
isocodes
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
enchant
|
||||
libxml2
|
||||
python
|
||||
gnome3.gtksourceview
|
||||
gnome3.libpeas
|
||||
mate.mate-desktop
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Powerful text editor for the MATE desktop";
|
||||
homepage = http://mate-desktop.org;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user