nixpkgs/pkgs/applications/kde/libkdegames.nix
2021-05-12 05:43:01 -05:00

26 lines
474 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; [ lheckemann ];
};
}