mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
c7d9fae3fd
- 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
15 lines
198 B
Nix
15 lines
198 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
_7zz,
|
|
libGLU,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kubrick";
|
|
|
|
extraNativeBuildInputs = [_7zz];
|
|
extraBuildInputs = [qtsvg libGLU];
|
|
|
|
meta.mainProgram = "kubrick";
|
|
}
|