mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
mate.pluma: 1.24.2 -> 1.26.0
This commit is contained in:
parent
ed62d5100a
commit
ebaa005ac8
2 changed files with 12 additions and 12 deletions
|
@ -52,7 +52,7 @@ let
|
|||
mate-user-share = callPackage ./mate-user-share { };
|
||||
mate-utils = callPackage ./mate-utils { };
|
||||
mozo = callPackage ./mozo { };
|
||||
pluma = callPackage ./pluma { };
|
||||
pluma = callPackage ./pluma { inherit (pkgs.gnome) adwaita-icon-theme; };
|
||||
python-caja = callPackage ./python-caja { };
|
||||
|
||||
basePackages = [
|
||||
|
|
|
@ -1,32 +1,32 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config, gettext, perl, itstool, isocodes, enchant, libxml2, python3
|
||||
, gnome, gtksourceview3, libpeas, mate, wrapGAppsHook, mateUpdateScript }:
|
||||
, adwaita-icon-theme, gtksourceview4, libpeas, mate-desktop, wrapGAppsHook, mateUpdateScript }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pluma";
|
||||
version = "1.24.2";
|
||||
version = "1.26.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "183frfhll3sb4r12p24160j1c1cfd102nlp5rrwvyv5qqm7i2fg4";
|
||||
sha256 = "0lway12q2xygiwjgrx7chgka838jbnmlzz98g7agag1rwzd481ii";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
gettext
|
||||
perl
|
||||
itstool
|
||||
isocodes
|
||||
itstool
|
||||
perl
|
||||
pkg-config
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
adwaita-icon-theme
|
||||
enchant
|
||||
libxml2
|
||||
python3
|
||||
gtksourceview3
|
||||
gtksourceview4
|
||||
libpeas
|
||||
gnome.adwaita-icon-theme
|
||||
mate.mate-desktop
|
||||
libxml2
|
||||
mate-desktop
|
||||
python3
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
|
Loading…
Reference in a new issue