mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
23 lines
282 B
Nix
23 lines
282 B
Nix
{
|
|
mkKdeDerivation,
|
|
_7zz,
|
|
svgcleaner,
|
|
qtdeclarative,
|
|
qtsvg,
|
|
openal,
|
|
libsndfile,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "libkdegames";
|
|
|
|
extraNativeBuildInputs = [
|
|
_7zz
|
|
svgcleaner
|
|
];
|
|
extraBuildInputs = [
|
|
openal
|
|
libsndfile
|
|
qtdeclarative
|
|
qtsvg
|
|
];
|
|
}
|