mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
ce77225e21
This is the thing you want to look at.
13 lines
245 B
Nix
13 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;
|
|
}
|