mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
e128d300a9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pluma/versions. These checks were done: - built on NixOS - ran ‘/nix/store/fb3vkl4s4sx82pld3anv8pfmb5axv05a-pluma-1.21.0/bin/pluma -h’ got 0 exit code - ran ‘/nix/store/fb3vkl4s4sx82pld3anv8pfmb5axv05a-pluma-1.21.0/bin/pluma --help’ got 0 exit code - ran ‘/nix/store/fb3vkl4s4sx82pld3anv8pfmb5axv05a-pluma-1.21.0/bin/.pluma-wrapped -h’ got 0 exit code - ran ‘/nix/store/fb3vkl4s4sx82pld3anv8pfmb5axv05a-pluma-1.21.0/bin/.pluma-wrapped --help’ got 0 exit code - found 1.21.0 with grep in /nix/store/fb3vkl4s4sx82pld3anv8pfmb5axv05a-pluma-1.21.0 - directory tree listing: https://gist.github.com/82bb4a3eafe7fd90b442f992b51bab3c
37 lines
893 B
Nix
37 lines
893 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, itstool, isocodes, enchant, libxml2, python, gnome3, mate, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pluma-${version}";
|
|
version = "1.21.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "1y3zl0rzp069pix1vgrhzkkfc3lvhq9ahfgbmc88cwqw9aw3mgk0";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|