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

42 lines
966 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libnotify, libxml2, libexif, exempi, mate, hicolor-icon-theme, wrapGAppsHook }:
2017-03-28 12:44:28 +01:00
stdenv.mkDerivation rec {
name = "caja-${version}";
mate.caja: 1.21.1 -> 1.21.2 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
2018-07-08 11:30:02 +01:00
version = "1.21.2";
2017-03-28 12:44:28 +01:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
mate.caja: 1.21.1 -> 1.21.2 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
2018-07-08 11:30:02 +01:00
sha256 = "0kswpghpsz69l417ammniy1ja0dsg1hrsm2k0rx28q9mhdfdmnwq";
2017-03-28 12:44:28 +01:00
};
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
buildInputs = [
gtk3
libnotify
libxml2
libexif
exempi
mate.mate-desktop
hicolor-icon-theme
2017-03-28 12:44:28 +01:00
];
2017-08-18 04:19:58 +01:00
patches = [
./caja-extension-dirs.patch
];
2017-03-28 12:44:28 +01:00
configureFlags = [ "--disable-update-mimedb" ];
meta = {
description = "File manager for the MATE desktop";
homepage = http://mate-desktop.org;
2017-03-28 12:44:28 +01:00
license = with stdenv.lib.licenses; [ gpl2 lgpl2 ];
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ];
};
}