nixpkgs/pkgs/applications/kde/libkdegames.nix
2024-06-21 15:54:54 +02:00

26 lines
463 B
Nix

{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, qtdeclarative
, kdeclarative
, kdnssd
, knewstuff
, openal
, libsndfile
, qtquickcontrols
}:
mkDerivation {
pname = "libkdegames";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
qtdeclarative kdeclarative kdnssd knewstuff openal libsndfile
qtquickcontrols
];
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ ];
};
}