c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
12 lines
245 B
Nix
12 lines
245 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;
|
|
}
|