nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 45 lines 833 B view raw
1{ 2 lib, 3 stdenv, 4 fetchgit, 5 cmake, 6 pkg-config, 7 qt6, 8 libvorbis, 9 libarchive, 10 libxml2, 11}: 12 13stdenv.mkDerivation (finalAttrs: { 14 version = "0.9.0"; 15 pname = "stopmotion"; 16 17 src = fetchgit { 18 url = "https://invent.kde.org/multimedia/stopmotion"; 19 rev = finalAttrs.version; 20 hash = "sha256-RsFqvAmTJBVg32bnY2eA9jWWnuHgv66rZiWMqa6sviw="; 21 }; 22 23 nativeBuildInputs = [ 24 cmake 25 pkg-config 26 qt6.wrapQtAppsHook 27 ]; 28 buildInputs = [ 29 qt6.qtbase 30 qt6.qttools 31 qt6.qtmultimedia 32 libvorbis 33 libarchive 34 libxml2 35 ]; 36 37 meta = { 38 description = "Create stop-motion animation movies"; 39 homepage = "http://linuxstopmotion.org/"; 40 license = lib.licenses.gpl2Plus; 41 platforms = lib.platforms.linux; 42 maintainers = [ lib.maintainers.bjornfor ]; 43 mainProgram = "stopmotion"; 44 }; 45})