depot/third_party/nixpkgs/pkgs/desktops/mate/caja/default.nix

63 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
gettext,
gtk-layer-shell,
gtk3,
libnotify,
libxml2,
libexif,
exempi,
mate-desktop,
hicolor-icon-theme,
wayland,
wrapGAppsHook3,
mateUpdateScript,
}:
stdenv.mkDerivation rec {
pname = "caja";
version = "1.28.0";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "HjAUzhRVgX7C73TQnv37aDXYo3LtmhbvtZGe97ghlXo=";
};
nativeBuildInputs = [
pkg-config
gettext
wrapGAppsHook3
];
buildInputs = [
gtk-layer-shell
gtk3
libnotify
libxml2
libexif
exempi
mate-desktop
hicolor-icon-theme
wayland
];
configureFlags = [ "--disable-update-mimedb" ];
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
meta = with lib; {
description = "File manager for the MATE desktop";
homepage = "https://mate-desktop.org";
license = with licenses; [
gpl2Plus
lgpl2Plus
];
platforms = platforms.unix;
maintainers = teams.mate.members;
};
}