mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
6d08204090
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 - /nix/store/qv4p1mlbwak5d9yrpx9asi95nyjqfcss-pluma-1.21.1/bin/pluma passed the binary check. - /nix/store/qv4p1mlbwak5d9yrpx9asi95nyjqfcss-pluma-1.21.1/bin/.pluma-wrapped passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 1.21.1 with grep in /nix/store/qv4p1mlbwak5d9yrpx9asi95nyjqfcss-pluma-1.21.1 - directory tree listing: https://gist.github.com/f06bd46e4278731e8bf069a5bc4f0f62 - du listing: https://gist.github.com/2e4b1ada7a39f4bb5b224c773d0096c6
38 lines
893 B
Nix
38 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.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0sc69bz0h3f4cpgkyda9fnpjfkvbc20ldh6v3jj8fd3n460bc8ai";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|