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

23 lines
395 B
Nix
Raw Normal View History

2017-12-17 15:02:52 +00:00
{ mkXfceDerivation, exo, gtk3, libxfce4ui, libxfce4util, libwnck3, xfconf }:
mkXfceDerivation rec {
category = "xfce";
pname = "xfdesktop";
2018-07-18 20:25:18 +00:00
version = "4.13.2";
2017-12-17 15:02:52 +00:00
2018-07-18 20:25:18 +00:00
sha256 = "0v6dlhraqh9v20qciyj03cbjmg3jb6gvmf0hqzavxqi2di3mv5fl";
2017-12-17 15:02:52 +00:00
buildInputs = [
exo
gtk3
libxfce4ui
libxfce4util
libwnck3
xfconf
];
meta = {
description = "Xfce's desktop manager";
};
}