18 lines
462 B
Nix
18 lines
462 B
Nix
{ 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;
|
|
};
|
|
}
|