about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce/core/thunar-volman/default.nix
blob: 3fe2df6f1b62d022b931edfb92a46396cac04ecf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, mkXfceDerivation, exo, gtk3, libgudev, libxfce4ui, libxfce4util, xfconf }:

mkXfceDerivation {
  category = "xfce";
  pname = "thunar-volman";
  version = "4.16.0";

  buildInputs = [ exo gtk3 libgudev libxfce4ui libxfce4util xfconf ];

  sha256 = "sha256-A9APQ5FLshb+MXQErCExegax6hqbHnlfI2hgtnWfVgA=";

  odd-unstable = false;

  meta = with lib; {
    description = "Thunar extension for automatic management of removable drives and media";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
  };
}