Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 16 lines 261 B view raw
1{ 2 mkKdeDerivation, 3 qtsvg, 4 python3, 5}: 6mkKdeDerivation { 7 pname = "kajongg"; 8 9 extraBuildInputs = [ 10 qtsvg 11 python3 12 python3.pkgs.twisted 13 ]; 14 # FIXME: completely horked, is actually a Python app, needs a lot of fixing 15 meta.broken = true; 16}