about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce/applications/gigolo/default.nix
blob: e63053deedf66a0c01bf07e3cabb2e5c222507b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, mkXfceDerivation, gtk3, glib }:

mkXfceDerivation {
  category = "apps";
  pname = "gigolo";
  version = "0.5.3";
  odd-unstable = false;

  sha256 = "sha256-dxaFuKbSqhj/l5JV31cI+XzgdghfbcVwVtwmRiZeff8=";

  buildInputs = [ gtk3 glib ];

  meta = with lib; {
    description = "A frontend to easily manage connections to remote filesystems";
    mainProgram = "gigolo";
    license = with licenses; [ gpl2Only ];
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
  };
}