4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
82 lines
1.8 KiB
Nix
82 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, mkDerivation
|
|
, fetchurl
|
|
, qtbase
|
|
, qtmultimedia
|
|
, qtquickcontrols
|
|
, qtimageformats
|
|
, qtxmlpatterns
|
|
, ffmpeg_3
|
|
, guvcview
|
|
, cmake
|
|
, ninja
|
|
, libxml2
|
|
, gettext
|
|
, pkgconfig
|
|
, libgphoto2
|
|
, gphoto2
|
|
, v4l-utils
|
|
, libv4l
|
|
, pcre
|
|
, qwt
|
|
, extra-cmake-modules
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "qstopmotion";
|
|
version = "2.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/${pname}/Version_${builtins.replaceStrings ["."] ["_"] version}/${pname}-${version}-Source.tar.gz";
|
|
sha256 = "03r6jxyq0bak2vsy2b78nk27m7fm96hnl8cx11l3l17704j4iglh";
|
|
};
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtmultimedia
|
|
qtquickcontrols
|
|
qtimageformats
|
|
qtxmlpatterns
|
|
v4l-utils
|
|
libv4l
|
|
pcre
|
|
ffmpeg_3
|
|
guvcview
|
|
qwt
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
cmake
|
|
extra-cmake-modules
|
|
ninja
|
|
gettext
|
|
libgphoto2
|
|
gphoto2
|
|
libxml2
|
|
libv4l
|
|
];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace "find_package(Qt5 REQUIRED COMPONENTS Core Widgets Xml" \
|
|
"find_package(Qt5 REQUIRED COMPONENTS Core Widgets Xml Multimedia"
|
|
grep -rl 'qwt' . | xargs sed -i 's@<qwt/qwt_slider.h>@<qwt_slider.h>@g'
|
|
'';
|
|
|
|
meta = with 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 ];
|
|
broken = stdenv.isAarch64;
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
|
|
};
|
|
}
|