mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
ce77225e21
This is the thing you want to look at.
16 lines
250 B
Nix
16 lines
250 B
Nix
{
|
|
mkKdeDerivation,
|
|
_7zz,
|
|
svgcleaner,
|
|
qtdeclarative,
|
|
qtsvg,
|
|
openal,
|
|
libsndfile,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "libkdegames";
|
|
|
|
extraNativeBuildInputs = [_7zz svgcleaner];
|
|
extraBuildInputs = [openal libsndfile qtdeclarative qtsvg];
|
|
}
|