mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
adaa8dade5
Upstream packaging changes: * New upstream source URL * qmake -> cmake * libtar -> libarchive
46 lines
810 B
Nix
46 lines
810 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
cmake,
|
|
pkg-config,
|
|
qt5,
|
|
libvorbis,
|
|
libarchive,
|
|
libxml2,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.8.7";
|
|
pname = "stopmotion";
|
|
|
|
src = fetchgit {
|
|
url = "https://invent.kde.org/multimedia/stopmotion";
|
|
rev = version;
|
|
hash = "sha256-wqrB0mo7sI9ntWF9QlYmGiRiIoLkMzD+mQ6BzhbAKX8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qt5.wrapQtAppsHook
|
|
];
|
|
buildInputs = [
|
|
qt5.qtbase
|
|
qt5.qttools
|
|
qt5.qtmultimedia
|
|
libvorbis
|
|
libarchive
|
|
libxml2
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Create stop-motion animation movies";
|
|
homepage = "http://linuxstopmotion.org/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
mainProgram = "stopmotion";
|
|
};
|
|
}
|