mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
17 lines
389 B
Nix
17 lines
389 B
Nix
{ mkXfceDerivation, exo, gtk3, gvfs, glib }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "gigolo";
|
|
version = "0.5.1";
|
|
odd-unstable = false;
|
|
|
|
sha256 = "11a35z5apr26nl6fpmbsvvv3xf5w61sgzcb505plavrchpfbdxjn";
|
|
|
|
nativeBuildInputs = [ exo ];
|
|
buildInputs = [ gtk3 glib gvfs ];
|
|
|
|
meta = {
|
|
description = "A frontend to easily manage connections to remote filesystems";
|
|
};
|
|
}
|