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

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

60 lines
1.1 KiB
Nix
Raw Normal View History

2022-07-12 11:56:56 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, gtk-layer-shell
2022-07-12 11:56:56 +00:00
, gtk3
, libnotify
, libxml2
, libexif
, exempi
, mate-desktop
2022-07-12 11:56:56 +00:00
, hicolor-icon-theme
, wayland
, wrapGAppsHook3
2022-07-12 11:56:56 +00:00
, mateUpdateScript
}:
2017-03-28 11:44:28 +00:00
stdenv.mkDerivation rec {
2019-06-03 13:36:25 +00:00
pname = "caja";
version = "1.28.0";
2017-03-28 11:44:28 +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 = "HjAUzhRVgX7C73TQnv37aDXYo3LtmhbvtZGe97ghlXo=";
2017-03-28 11:44:28 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
wrapGAppsHook3
2017-03-28 11:44:28 +00:00
];
buildInputs = [
gtk-layer-shell
2017-03-28 11:44:28 +00:00
gtk3
libnotify
libxml2
libexif
exempi
mate-desktop
hicolor-icon-theme
wayland
2017-03-28 11:44:28 +00:00
];
configureFlags = [ "--disable-update-mimedb" ];
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 19:58:16 +00:00
2021-04-22 13:23:43 +00:00
meta = with lib; {
2017-03-28 11:44:28 +00:00
description = "File manager for the MATE desktop";
2020-02-12 17:51:18 +00:00
homepage = "https://mate-desktop.org";
2021-04-22 13:23:43 +00:00
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
maintainers = teams.mate.members;
2017-03-28 11:44:28 +00:00
};
}