mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
ce77225e21
This is the thing you want to look at.
16 lines
250 B
Nix
16 lines
250 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtquick3d,
|
|
qtsvg,
|
|
purpose,
|
|
pkg-config,
|
|
mpv,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "plasmatube";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtquick3d qtsvg mpv];
|
|
extraPropagatedBuildInputs = [purpose];
|
|
}
|