depot/third_party/nixpkgs/pkgs/desktops/xfce/thunar-plugins/archive/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

37 lines
535 B
Nix

{ lib
, mkXfceDerivation
, gtk3
, thunar
, exo
, libxfce4util
, intltool
, gettext
}:
mkXfceDerivation {
category = "thunar-plugins";
pname = "thunar-archive-plugin";
version = "0.4.0";
sha256 = "sha256-aEAErm87K2k8TAz2ZtMQEhmzhOeR2hkJjcoBUFn8I50=";
nativeBuildInputs = [
intltool
gettext
];
buildInputs = [
thunar
exo
gtk3
libxfce4util
];
preConfigure = ''
./autogen.sh
'';
meta = with lib; {
description = "Thunar plugin providing file context menus for archives";
};
}