-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ stdenv, fetchurl, qt5, gstreamer, gstreamermm, gst_plugins_bad | ||
, gst_plugins_base, gst_plugins_good, ffmpeg, guvcview, automoc4 | ||
, cmake, libxml2, gettext, pkgconfig, libgphoto2, gphoto2, v4l_utils | ||
, libv4l, pcre }: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "qstopmotion"; | ||
version = "2.3.2"; | ||
name = "${pname}-${version}"; | ||
|
||
src = fetchurl { | ||
url = "mirror://sourceforge/project/${pname}/Version_2_3_2/${name}-Source.tar.gz"; | ||
sha256 = "1vbiznwyc05jqg0dpmgxmvf7kdzmlck0i8v2c5d69kgrdnaypcrf"; | ||
}; | ||
|
||
buildInputs = [ qt5.qtbase gstreamer gstreamermm gst_plugins_bad gst_plugins_good | ||
gst_plugins_base ffmpeg guvcview v4l_utils libv4l pcre | ||
]; | ||
|
||
nativeBuildInputs = [ pkgconfig cmake gettext libgphoto2 gphoto2 libxml2 libv4l ]; | ||
|
||
meta = with stdenv.lib; { | ||
homepage = "http://www.qstopmotion.org"; | ||
description = "Create stopmotion animation with a (web)camera"; | ||
longDescription = '' | ||
Qstopmotion is a tool to create stopmotion | ||
animation. Its users are able to create stop-motions from pictures | ||
imported from a camera or from the harddrive and export the | ||
animation to different video formats such as mpeg or avi. | ||
''; | ||
|
||
license = stdenv.lib.licenses.gpl2Plus; | ||
maintainers = [ maintainers.leenaars ]; | ||
platforms = stdenv.lib.platforms.gnu; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters