mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 20:53:22 +00:00
![K900](/assets/img/avatar_default.png)
- kio-extras-kf5 moved to misc because of release schedule weirdness - calindori ported to KF6, reenabled - some build fixes all over - add 7zip to a bunch of games for SVG compression
14 lines
191 B
Nix
14 lines
191 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
_7zz,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kjumpingcube";
|
|
|
|
extraNativeBuildInputs = [_7zz];
|
|
extraBuildInputs = [qtsvg];
|
|
|
|
meta.mainProgram = "kjumpingcube";
|
|
}
|