qstopmotion: format inputs and arguments
This commit is contained in:
parent
1bfde2e0ce
commit
f04b40ae4b
|
@ -1,6 +1,22 @@
|
||||||
{ mkDerivation, stdenv, fetchurl, qt5, ffmpeg, guvcview, cmake, ninja, libxml2
|
{ stdenv
|
||||||
, gettext, pkgconfig, libgphoto2, gphoto2, v4l-utils, libv4l, pcre
|
, mkDerivation
|
||||||
, qwt, extra-cmake-modules }:
|
, fetchurl
|
||||||
|
, qt5
|
||||||
|
, ffmpeg
|
||||||
|
, guvcview
|
||||||
|
, cmake
|
||||||
|
, ninja
|
||||||
|
, libxml2
|
||||||
|
, gettext
|
||||||
|
, pkgconfig
|
||||||
|
, libgphoto2
|
||||||
|
, gphoto2
|
||||||
|
, v4l-utils
|
||||||
|
, libv4l
|
||||||
|
, pcre
|
||||||
|
, qwt
|
||||||
|
, extra-cmake-modules
|
||||||
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "qstopmotion";
|
pname = "qstopmotion";
|
||||||
|
@ -11,11 +27,31 @@ mkDerivation rec {
|
||||||
sha256 = "03r6jxyq0bak2vsy2b78nk27m7fm96hnl8cx11l3l17704j4iglh";
|
sha256 = "03r6jxyq0bak2vsy2b78nk27m7fm96hnl8cx11l3l17704j4iglh";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with qt5; [ v4l-utils libv4l pcre qtbase qtmultimedia ffmpeg guvcview
|
buildInputs = with qt5; [
|
||||||
qwt qtquickcontrols qtimageformats qtxmlpatterns ];
|
v4l-utils
|
||||||
|
libv4l
|
||||||
|
pcre
|
||||||
|
qtbase
|
||||||
|
qtmultimedia
|
||||||
|
ffmpeg
|
||||||
|
guvcview
|
||||||
|
qwt
|
||||||
|
qtquickcontrols
|
||||||
|
qtimageformats
|
||||||
|
qtxmlpatterns
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig cmake extra-cmake-modules ninja
|
nativeBuildInputs = [
|
||||||
gettext libgphoto2 gphoto2 libxml2 libv4l ];
|
pkgconfig
|
||||||
|
cmake
|
||||||
|
extra-cmake-modules
|
||||||
|
ninja
|
||||||
|
gettext
|
||||||
|
libgphoto2
|
||||||
|
gphoto2
|
||||||
|
libxml2
|
||||||
|
libv4l
|
||||||
|
];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
substituteInPlace CMakeLists.txt \
|
substituteInPlace CMakeLists.txt \
|
||||||
|
|
Loading…
Reference in New Issue