7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
16 lines
261 B
Nix
16 lines
261 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
python3,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kajongg";
|
|
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
python3
|
|
python3.pkgs.twisted
|
|
];
|
|
# FIXME: completely horked, is actually a Python app, needs a lot of fixing
|
|
meta.broken = true;
|
|
}
|