nixpkgs/pkgs/desktops/mate/pluma/default.nix
José Romildo Malaquias 5aa32d732e pluma: 1.18.2 -> 1.18.3
2017-12-24 00:05:56 -02:00

40 lines
939 B
Nix

{ 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 = "3";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "1bz2jvjfz761hcvhcbkz8sc4xf0iyixh5w0k7bx69qkwwdc0gxi0";
};
nativeBuildInputs = [
pkgconfig
intltool
itstool
isocodes
wrapGAppsHook
];
buildInputs = [
enchant
libxml2
python
gnome3.gtksourceview
gnome3.libpeas
gnome3.defaultIconTheme
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 ];
};
}