stopmotion: 0.8.5 -> 0.8.7
Upstream packaging changes: * New upstream source URL * qmake -> cmake * libtar -> libarchive
This commit is contained in:
parent
2bd2f80d4a
commit
adaa8dade5
@ -2,25 +2,26 @@
|
|||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchgit,
|
fetchgit,
|
||||||
|
cmake,
|
||||||
pkg-config,
|
pkg-config,
|
||||||
qt5,
|
qt5,
|
||||||
libvorbis,
|
libvorbis,
|
||||||
libtar,
|
libarchive,
|
||||||
libxml2,
|
libxml2,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.8.5";
|
version = "0.8.7";
|
||||||
pname = "stopmotion";
|
pname = "stopmotion";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://git.code.sf.net/p/linuxstopmotion/code";
|
url = "https://invent.kde.org/multimedia/stopmotion";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1612lkwsfzc59wvdj2zbj5cwsyw66bwn31jrzjrxvygxdh4ab069";
|
hash = "sha256-wqrB0mo7sI9ntWF9QlYmGiRiIoLkMzD+mQ6BzhbAKX8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
qt5.qmake
|
cmake
|
||||||
pkg-config
|
pkg-config
|
||||||
qt5.wrapQtAppsHook
|
qt5.wrapQtAppsHook
|
||||||
];
|
];
|
||||||
@ -29,14 +30,10 @@ stdenv.mkDerivation rec {
|
|||||||
qt5.qttools
|
qt5.qttools
|
||||||
qt5.qtmultimedia
|
qt5.qtmultimedia
|
||||||
libvorbis
|
libvorbis
|
||||||
libtar
|
libarchive
|
||||||
libxml2
|
libxml2
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace stopmotion.pro --replace '$$[QT_INSTALL_BINS]' '${lib.getDev qt5.qttools}/bin'
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Create stop-motion animation movies";
|
description = "Create stop-motion animation movies";
|
||||||
homepage = "http://linuxstopmotion.org/";
|
homepage = "http://linuxstopmotion.org/";
|
||||||
|
Loading…
Reference in New Issue
Block a user