Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 37 lines 507 B view raw
1{ 2 lib, 3 mkXfceDerivation, 4 docbook_xsl, 5 glib, 6 libxslt, 7 gtk3, 8 libxfce4ui, 9 libxfce4util, 10 perl, 11}: 12 13mkXfceDerivation { 14 category = "xfce"; 15 pname = "exo"; 16 version = "4.20.0"; 17 18 sha256 = "sha256-mlGsFaKy96eEAYgYYqtEI4naq5ZSEe3V7nsWGAEucn0="; 19 20 nativeBuildInputs = [ 21 libxslt 22 docbook_xsl 23 perl 24 ]; 25 26 buildInputs = [ 27 gtk3 28 glib 29 libxfce4ui 30 libxfce4util 31 ]; 32 33 meta = with lib; { 34 description = "Application library for Xfce"; 35 teams = [ teams.xfce ]; 36 }; 37}