afdbeb5b1a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/caja/versions. These checks were done: - built on NixOS - /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2/bin/caja passed the binary check. - Warning: no invocation of /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2/bin/caja-file-management-properties had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2/bin/caja-autorun-software had a zero exit code or showed the expected version - /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2/bin/caja-connect-server passed the binary check. - /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2/bin/.caja-wrapped passed the binary check. - Warning: no invocation of /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2/bin/.caja-file-management-properties-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2/bin/.caja-autorun-software-wrapped had a zero exit code or showed the expected version - /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2/bin/.caja-connect-server-wrapped passed the binary check. - 4 of 8 passed binary check by having a zero exit code. - 0 of 8 passed binary check by having the new version present in output. - found 1.21.2 with grep in /nix/store/29qp0b60aa3w4v4wvwdxy81qk64krqc0-caja-1.21.2 - directory tree listing: https://gist.github.com/2709b44f62bdb6a5d626484e7b4f24ae - du listing: https://gist.github.com/a862e36a066610421b23ee38f984d40b
42 lines
966 B
Nix
42 lines
966 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libnotify, libxml2, libexif, exempi, mate, hicolor-icon-theme, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "caja-${version}";
|
|
version = "1.21.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0kswpghpsz69l417ammniy1ja0dsg1hrsm2k0rx28q9mhdfdmnwq";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libnotify
|
|
libxml2
|
|
libexif
|
|
exempi
|
|
mate.mate-desktop
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
patches = [
|
|
./caja-extension-dirs.patch
|
|
];
|
|
|
|
configureFlags = [ "--disable-update-mimedb" ];
|
|
|
|
meta = {
|
|
description = "File manager for the MATE desktop";
|
|
homepage = http://mate-desktop.org;
|
|
license = with stdenv.lib.licenses; [ gpl2 lgpl2 ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|