kdeApplications.kamoso: init at 20.12.1
This commit is contained in:
parent
93b9709299
commit
d9f9d3088f
2 changed files with 42 additions and 0 deletions
|
@ -91,6 +91,7 @@ let
|
|||
kalarm = callPackage ./kalarm.nix {};
|
||||
kalarmcal = callPackage ./kalarmcal.nix {};
|
||||
kalzium = callPackage ./kalzium.nix {};
|
||||
kamoso = callPackage ./kamoso.nix {};
|
||||
kapman = callPackage ./kapman.nix {};
|
||||
kapptemplate = callPackage ./kapptemplate.nix { };
|
||||
kate = callPackage ./kate.nix {};
|
||||
|
|
41
pkgs/applications/kde/kamoso.nix
Normal file
41
pkgs/applications/kde/kamoso.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ mkDerivation
|
||||
, lib
|
||||
, extra-cmake-modules
|
||||
, kdoctools
|
||||
, wrapQtAppsHook
|
||||
, qtdeclarative
|
||||
, qtgraphicaleffects
|
||||
, qtquickcontrols2
|
||||
, kirigami2
|
||||
, kpurpose
|
||||
, gst_all_1
|
||||
, pcre
|
||||
}:
|
||||
|
||||
let
|
||||
gst = with gst_all_1; [ gstreamer gst-libav gst-plugins-base gst-plugins-good gst-plugins-bad ];
|
||||
|
||||
in
|
||||
mkDerivation {
|
||||
pname = "kamoso";
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapQtAppsHook ];
|
||||
buildInputs = [ pcre ] ++ gst;
|
||||
propagatedBuildInputs = [
|
||||
qtdeclarative
|
||||
qtgraphicaleffects
|
||||
qtquickcontrols2
|
||||
kirigami2
|
||||
kpurpose
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DOpenGL_GL_PREFERENCE=GLVND"
|
||||
"-DGSTREAMER_VIDEO_INCLUDE_DIR=${gst_all_1.gst-plugins-base.dev}/include/gstreamer-1.0"
|
||||
];
|
||||
|
||||
qtWrapperArgs = [
|
||||
"--prefix GST_PLUGIN_PATH : ${lib.makeSearchPath "lib/gstreamer-1.0" gst}"
|
||||
];
|
||||
|
||||
meta.license = with lib.licenses; [ lgpl21Only gpl3Only ];
|
||||
}
|
Loading…
Reference in a new issue