Skip to content

Commit b4b6982

Browse files
leenaarsbjornfor
authored andcommittedJun 17, 2017
qstopmotion: init -> 2.3.2
1 parent e1ec8d9 commit b4b6982

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{ stdenv, fetchurl, qt5, gstreamer, gstreamermm, gst_plugins_bad
2+
, gst_plugins_base, gst_plugins_good, ffmpeg, guvcview, automoc4
3+
, cmake, libxml2, gettext, pkgconfig, libgphoto2, gphoto2, v4l_utils
4+
, libv4l, pcre }:
5+
6+
stdenv.mkDerivation rec {
7+
pname = "qstopmotion";
8+
version = "2.3.2";
9+
name = "${pname}-${version}";
10+
11+
src = fetchurl {
12+
url = "mirror://sourceforge/project/${pname}/Version_2_3_2/${name}-Source.tar.gz";
13+
sha256 = "1vbiznwyc05jqg0dpmgxmvf7kdzmlck0i8v2c5d69kgrdnaypcrf";
14+
};
15+
16+
buildInputs = [ qt5.qtbase gstreamer gstreamermm gst_plugins_bad gst_plugins_good
17+
gst_plugins_base ffmpeg guvcview v4l_utils libv4l pcre
18+
];
19+
20+
nativeBuildInputs = [ pkgconfig cmake gettext libgphoto2 gphoto2 libxml2 libv4l ];
21+
22+
meta = with stdenv.lib; {
23+
homepage = "http://www.qstopmotion.org";
24+
description = "Create stopmotion animation with a (web)camera";
25+
longDescription = ''
26+
Qstopmotion is a tool to create stopmotion
27+
animation. Its users are able to create stop-motions from pictures
28+
imported from a camera or from the harddrive and export the
29+
animation to different video formats such as mpeg or avi.
30+
'';
31+
32+
license = stdenv.lib.licenses.gpl2Plus;
33+
maintainers = [ maintainers.leenaars ];
34+
platforms = stdenv.lib.platforms.gnu;
35+
};
36+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -15541,6 +15541,8 @@ with pkgs;
1554115541
# 0.5.7 segfaults when opening the main panel with qt 5.7 and fails to compile with qt 5.8
1554215542
qsyncthingtray = libsForQt56.callPackage ../applications/misc/qsyncthingtray { };
1554315543

15544+
qstopmotion = callPackage ../applications/video/qstopmotion { };
15545+
1554415546
qsynth = callPackage ../applications/audio/qsynth { };
1554515547

1554615548
qtbitcointrader = callPackage ../applications/misc/qtbitcointrader { };

0 commit comments

Comments
 (0)
Please sign in to comment.