mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
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;
|
|
}
|