depot/third_party/nixpkgs/pkgs/desktops/xfce/applications/gigolo/default.nix
Default email 3cbfd2b52c Project import generated by Copybara.
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
2021-12-18 20:06:50 -05:00

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;
};
}