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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.3 KiB
Nix
Raw Normal View History

2022-07-12 11:56:56 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, caja
, glib
, gst_all_1
2022-07-12 11:56:56 +00:00
, gtk3
, gupnp
, imagemagick
, mate-desktop
2022-07-12 11:56:56 +00:00
, wrapGAppsHook
, mateUpdateScript
}:
2017-08-18 03:16:18 +00:00
stdenv.mkDerivation rec {
pname = "caja-extensions";
version = "1.28.0";
2017-08-18 03:16:18 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0phsXgdAg1/icc+9WCPu6vAyka8XYyA/RwCruBCeMXU=";
2017-08-18 03:16:18 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
wrapGAppsHook
2017-08-18 03:16:18 +00:00
];
buildInputs = [
caja
glib
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
2017-08-18 03:16:18 +00:00
gtk3
gupnp
imagemagick
mate-desktop
];
2017-08-18 03:16:18 +00:00
postPatch = ''
for f in image-converter/caja-image-{resizer,rotator}.c; do
substituteInPlace $f --replace-fail 'argv[0] = "convert"' 'argv[0] = "${imagemagick}/bin/convert"'
2017-08-18 03:16:18 +00:00
done
'';
2017-08-18 03:16:18 +00:00
configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 19:58:16 +00:00
meta = with lib; {
2017-08-18 03:16:18 +00:00
description = "Set of extensions for Caja file manager";
mainProgram = "caja-sendto";
2020-02-12 17:51:18 +00:00
homepage = "https://mate-desktop.org";
2021-04-22 13:23:43 +00:00
license = licenses.gpl2Plus;
2017-08-18 03:16:18 +00:00
platforms = platforms.unix;
maintainers = teams.mate.members;
2017-08-18 03:16:18 +00:00
};
}