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

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

  sha256 = "sha256-8UDb4H3zxRKx2y+MRsozQoR3es0fs5ooR/5wBIE11bY=";

  buildInputs = [ gtk3 glib ];

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