nixpkgs/pkgs/desktops/xfce4-13/xfdesktop/default.nix

24 lines
422 B
Nix
Raw Normal View History

2017-12-17 07:02:52 -08:00
{ mkXfceDerivation, exo, gtk3, libxfce4ui, libxfce4util, libwnck3, xfconf }:
mkXfceDerivation rec {
category = "xfce";
pname = "xfdesktop";
2019-07-02 08:29:15 -07:00
version = "4.14pre2";
rev = "xfce-4.14pre2";
2017-12-17 07:02:52 -08:00
2019-07-02 08:29:15 -07:00
sha256 = "14sfcxbwxhhwn9nmiap46nz6idvw5hwr8wyjqrhq4h79x78g18k4";
2017-12-17 07:02:52 -08:00
buildInputs = [
exo
gtk3
libxfce4ui
libxfce4util
libwnck3
xfconf
];
meta = {
description = "Xfce's desktop manager";
};
}