nixpkgs/pkgs/desktops/mate/caja-extensions/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-02 21:58:16 +02:00
{ lib, stdenv, fetchurl, pkg-config, gettext, gtk3, gupnp, mate, imagemagick, wrapGAppsHook, mateUpdateScript }:
2017-08-18 05:16:18 +02:00
stdenv.mkDerivation rec {
pname = "caja-extensions";
2020-09-18 17:15:18 +02:00
version = "1.24.1";
2017-08-18 05:16:18 +02:00
src = fetchurl {
2021-01-15 14:21:58 +01:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-09-18 17:15:18 +02:00
sha256 = "13jkynanqj8snys0if8lv6yx1y0jrm778s2152n4x65hsghc6cw5";
2017-08-18 05:16:18 +02:00
};
nativeBuildInputs = [
2021-01-17 03:21:50 +01:00
pkg-config
gettext
wrapGAppsHook
2017-08-18 05:16:18 +02:00
];
buildInputs = [
gtk3
gupnp
mate.caja
mate.mate-desktop
2017-08-18 05:16:18 +02:00
imagemagick
];
postPatch = ''
for f in image-converter/caja-image-{resizer,rotator}.c; do
substituteInPlace $f --replace "/usr/bin/convert" "${imagemagick}/bin/convert"
done
'';
2017-08-18 05:16:18 +02:00
configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
2020-02-14 22:52:51 +01:00
enableParallelBuilding = true;
2021-04-02 21:58:16 +02:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
meta = with lib; {
2017-08-18 05:16:18 +02:00
description = "Set of extensions for Caja file manager";
2020-02-12 18:51:18 +01:00
homepage = "https://mate-desktop.org";
2021-04-22 15:23:43 +02:00
license = licenses.gpl2Plus;
2017-08-18 05:16:18 +02:00
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}