mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
13 lines
265 B
Nix
13 lines
265 B
Nix
{ mkXfceDerivation, exo, gtk3, gvfs, glib }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "gigolo";
|
|
version = "0.5.0";
|
|
|
|
sha256 = "1lqsxb0d5i8p9vbzx8s4p3rga7va5h1q146xgmsa41j5v40wrlw6";
|
|
|
|
nativeBuildInputs = [ exo ];
|
|
buildInputs = [ gtk3 glib gvfs ];
|
|
}
|