nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 40 lines 748 B view raw
1{ 2 stdenv, 3 lib, 4 mkXfceDerivation, 5 gtk3, 6 libxfce4ui, 7 libxfce4util, 8 withIntrospection ? 9 lib.meta.availableOn stdenv.hostPlatform gobject-introspection 10 && stdenv.hostPlatform.emulatorAvailable buildPackages, 11 buildPackages, 12 gobject-introspection, 13}: 14 15mkXfceDerivation { 16 category = "xfce"; 17 pname = "garcon"; 18 version = "4.20.0"; 19 20 sha256 = "sha256-MeZkDb2QgGMaloO6Nwlj9JmZByepd6ERqpAWqrVv1xw="; 21 22 nativeBuildInputs = lib.optionals withIntrospection [ 23 gobject-introspection 24 ]; 25 26 buildInputs = [ 27 gtk3 28 libxfce4ui 29 libxfce4util 30 ]; 31 32 meta = with lib; { 33 description = "Xfce menu support library"; 34 license = with licenses; [ 35 lgpl2Only 36 fdl11Only 37 ]; 38 teams = [ teams.xfce ]; 39 }; 40}