mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
gyroflow: init at 1.5.4-2023-12-22
1.5.4 proper does not build from source because some of its dependencies are github forks that were merged upstream and deleted. Closes #216299
This commit is contained in:
parent
2a3a04d22e
commit
79e0b12a12
5084
pkgs/applications/video/gyroflow/Cargo.lock
generated
Normal file
5084
pkgs/applications/video/gyroflow/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
126
pkgs/applications/video/gyroflow/default.nix
Normal file
126
pkgs/applications/video/gyroflow/default.nix
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
{ lib, rustPlatform, fetchFromGitHub, callPackage, makeDesktopItem
|
||||||
|
, clang, copyDesktopItems, patchelf, pkg-config, wrapQtAppsHook
|
||||||
|
, alsa-lib, bash, ffmpeg, mdk-sdk, ocl-icd, opencv, qtbase, qtdeclarative, qtsvg
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "gyroflow";
|
||||||
|
version = "1.5.4-2023-12-25";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gyroflow";
|
||||||
|
repo = "gyroflow";
|
||||||
|
rev = "e0869ffe648cb3fd88d81c807b1f7fa2e18d7430";
|
||||||
|
hash = "sha256-KB/uoQR43im/m5uJhheAPCqUH9oIx85JaIUwW9rhAAw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoLock = {
|
||||||
|
lockFile = ./Cargo.lock;
|
||||||
|
outputHashes = {
|
||||||
|
"ahrs-0.6.0" = "sha256-CxWyX8t+BjqIyNj1p1LdkCmNrtJkudmKgZPv0MVcghY=";
|
||||||
|
"akaze-0.7.0" = "sha256-KkGXKoVRZZ7HUTtWYBerrN36a7RqsHjYQb+bwG1JagY=";
|
||||||
|
"d3d12-0.7.0" = "sha256-FqAVwW2jtDE1BV31OfrCJljGhj5iD0OfN2fANQ1wasc=";
|
||||||
|
"fc-blackbox-0.2.0" = "sha256-gL8m9DpHJPVD8vvrmuYv+biJT4PA5LmtohJwFVO+khU=";
|
||||||
|
"glow-0.13.0" = "sha256-vhPWzsm7NZx9JiRZcVoUslTGySQbASRh/wNlo1nK5jg=";
|
||||||
|
"keep-awake-0.1.0" = "sha256-EoXhK4/Aij70f73+5NBUoCXqZISG1+n2eVavNqe8mq4=";
|
||||||
|
"nshare-0.9.0" = "sha256-PAV41mMLDmhkAz4+qyf+MZnYTAdMwjk83+f+RdaJji8=";
|
||||||
|
"qmetaobject-0.2.10" = "sha256-ldmpbOYoCOaAoipfcCSwuV+fzF9gg1PTbRz2Jm4zJvA=";
|
||||||
|
"qml-video-rs-0.1.0" = "sha256-rwdci0QhGYOnCf04u61xuon06p8Zm2wKCNrW/qti9+U=";
|
||||||
|
"rs-sync-0.1.0" = "sha256-sfym7zv5SUitopqNJ6uFP6AMzAGf4Y7U0dzXAKlvuGA=";
|
||||||
|
"simplelog-0.12.0" = "sha256-NvmtLbzahSw1WMS3LY+jWiX4SxfSRwidTMvICGcmDO4=";
|
||||||
|
"system_shutdown-4.0.1" = "sha256-arJWmEjDdaig/oAfwSolVmk9s1UovrQ5LNUgTpUvoOQ=";
|
||||||
|
"telemetry-parser-0.2.8" = "sha256-Nr4SWEERKEAiZppqzjn1LIuMiZ2BTQEOKOlSnLVAXAg=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
lens-profiles = callPackage ./lens-profiles.nix { };
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
clang copyDesktopItems patchelf pkg-config rustPlatform.bindgenHook wrapQtAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ alsa-lib bash ffmpeg mdk-sdk ocl-icd opencv qtbase qtdeclarative qtsvg ];
|
||||||
|
|
||||||
|
patches = [ ./no-static-zlib.patch ];
|
||||||
|
|
||||||
|
# qml-video-rs and gyroflow assume that all Qt headers are installed
|
||||||
|
# in a single (qtbase) directory. Apart form QtCore and QtGui from
|
||||||
|
# qtbase they need QtQuick and QtQml public and private headers from
|
||||||
|
# qtdeclarative:
|
||||||
|
# https://github.com/AdrianEddy/qml-video-rs/blob/bbf60090b966f0df2dd016e01da2ea78666ecea2/build.rs#L22-L40
|
||||||
|
# https://github.com/gyroflow/gyroflow/blob/v1.5.4/build.rs#L163-L186
|
||||||
|
# Additionally gyroflow needs QtQuickControls2:
|
||||||
|
# https://github.com/gyroflow/gyroflow/blob/v1.5.4/build.rs#L173
|
||||||
|
env.NIX_CFLAGS_COMPILE = toString [
|
||||||
|
"-I${qtdeclarative}/include/QtQuick"
|
||||||
|
"-I${qtdeclarative}/include/QtQuick/${qtdeclarative.version}"
|
||||||
|
"-I${qtdeclarative}/include/QtQuick/${qtdeclarative.version}/QtQuick"
|
||||||
|
"-I${qtdeclarative}/include/QtQml"
|
||||||
|
"-I${qtdeclarative}/include/QtQml/${qtdeclarative.version}"
|
||||||
|
"-I${qtdeclarative}/include/QtQml/${qtdeclarative.version}/QtQml"
|
||||||
|
"-I${qtdeclarative}/include/QtQuickControls2"
|
||||||
|
];
|
||||||
|
|
||||||
|
# FFMPEG_DIR is used by ffmpeg-sys-next/build.rs and
|
||||||
|
# gyroflow/build.rs. ffmpeg-sys-next fails to build if this dir
|
||||||
|
# does not contain ffmpeg *headers*. gyroflow assumes that it
|
||||||
|
# contains ffmpeg *libraries*, but builds fine as long as it is set
|
||||||
|
# with any value.
|
||||||
|
env.FFMPEG_DIR = ffmpeg.dev;
|
||||||
|
|
||||||
|
# These variables are needed by gyroflow/build.rs.
|
||||||
|
# OPENCV_LINK_LIBS is based on the value in gyroflow/_scripts/common.just, with opencv_dnn added to fix linking.
|
||||||
|
env.OPENCV_LINK_PATHS = "${opencv}/lib";
|
||||||
|
env.OPENCV_LINK_LIBS = "opencv_core,opencv_calib3d,opencv_dnn,opencv_features2d,opencv_imgproc,opencv_video,opencv_flann,opencv_imgcodecs,opencv_objdetect,opencv_stitching,png";
|
||||||
|
|
||||||
|
# For qml-video-rs. It concatenates "lib/" to this value so it needs a trailing "/":
|
||||||
|
env.MDK_SDK = "${mdk-sdk}/";
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
# qml-video-rs/build.rs wants to overwrite it:
|
||||||
|
find target -name libmdk.so.0 -exec chmod +w {} \;
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = false; # No tests.
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/opt/Gyroflow
|
||||||
|
cp -r resources $out/opt/Gyroflow/
|
||||||
|
ln -s ${lens-profiles} $out/opt/Gyroflow/resources/camera_presets
|
||||||
|
|
||||||
|
rm -rf $out/lib
|
||||||
|
patchelf $out/bin/gyroflow --add-rpath ${mdk-sdk}/lib
|
||||||
|
|
||||||
|
mv $out/bin/gyroflow $out/opt/Gyroflow/
|
||||||
|
ln -s ../opt/Gyroflow/gyroflow $out/bin/
|
||||||
|
|
||||||
|
install -D ${./gyroflow-open.sh} $out/bin/gyroflow-open
|
||||||
|
install -Dm644 ${./gyroflow-mime.xml} $out/share/mime/packages/gyroflow.xml
|
||||||
|
install -Dm644 resources/icon.svg $out/share/icons/hicolor/scalable/apps/gyroflow.svg
|
||||||
|
'';
|
||||||
|
|
||||||
|
desktopItems = [
|
||||||
|
(makeDesktopItem (rec {
|
||||||
|
name = "gyroflow";
|
||||||
|
desktopName = "Gyroflow";
|
||||||
|
genericName = "Video stabilization using gyroscope data";
|
||||||
|
comment = meta.description;
|
||||||
|
icon = "gyroflow";
|
||||||
|
exec = "gyroflow-open %u";
|
||||||
|
terminal = false;
|
||||||
|
mimeTypes = [ "application/x-gyroflow" ];
|
||||||
|
categories = [ "AudioVideo" "Video" "AudioVideoEditing" "Qt" ];
|
||||||
|
startupNotify = true;
|
||||||
|
startupWMClass = "gyroflow";
|
||||||
|
prefersNonDefaultGPU = true;
|
||||||
|
}))
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Advanced gyro-based video stabilization tool";
|
||||||
|
homepage = "https://gyroflow.xyz/";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ orivej ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
8
pkgs/applications/video/gyroflow/gyroflow-mime.xml
Normal file
8
pkgs/applications/video/gyroflow/gyroflow-mime.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
||||||
|
<mime-type type="application/x-gyroflow">
|
||||||
|
<glob pattern="*.gyroflow"/>
|
||||||
|
<comment xml:lang="en">Gyroflow project</comment>
|
||||||
|
<icon name="gyroflow"/>
|
||||||
|
</mime-type>
|
||||||
|
</mime-info>
|
6
pkgs/applications/video/gyroflow/gyroflow-open.sh
Normal file
6
pkgs/applications/video/gyroflow/gyroflow-open.sh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
if [ "$#" -ge 1 ]; then
|
||||||
|
exec "$(dirname "$0")"/gyroflow --open "$@"
|
||||||
|
else
|
||||||
|
exec "$(dirname "$0")"/gyroflow "$@"
|
||||||
|
fi
|
19
pkgs/applications/video/gyroflow/lens-profiles.nix
Normal file
19
pkgs/applications/video/gyroflow/lens-profiles.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ lib, fetchFromGitHub }:
|
||||||
|
|
||||||
|
fetchFromGitHub {
|
||||||
|
pname = "gyroflow-lens-profiles";
|
||||||
|
version = "2023-12-01";
|
||||||
|
|
||||||
|
owner = "gyroflow";
|
||||||
|
repo = "lens_profiles";
|
||||||
|
rev = "3e72169ae6b8601260497d7216d5fcbbc8b67194";
|
||||||
|
hash = "sha256-18KtunSxTsJhBge+uOGBcNZRG3W26M/Osyxllu+N0UI=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Lens profile database for Gyroflow";
|
||||||
|
homepage = "https://github.com/gyroflow/lens_profiles";
|
||||||
|
license = licenses.cc0;
|
||||||
|
maintainers = with maintainers; [ orivej ];
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
6
pkgs/applications/video/gyroflow/no-static-zlib.patch
Normal file
6
pkgs/applications/video/gyroflow/no-static-zlib.patch
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
diff --git a/build.rs b/build.rs
|
||||||
|
index 8ba86bf..f6f00a0 100644
|
||||||
|
--- a/build.rs
|
||||||
|
+++ b/build.rs
|
||||||
|
@@ -203 +202,0 @@ fn main() {
|
||||||
|
- println!("cargo:rustc-link-lib=static:+whole-archive=z");
|
@ -9055,6 +9055,10 @@ with pkgs;
|
|||||||
|
|
||||||
gvproxy = callPackage ../tools/networking/gvproxy { };
|
gvproxy = callPackage ../tools/networking/gvproxy { };
|
||||||
|
|
||||||
|
gyroflow = qt6Packages.callPackage ../applications/video/gyroflow {
|
||||||
|
ffmpeg = ffmpeg_6;
|
||||||
|
};
|
||||||
|
|
||||||
gzip = callPackage ../tools/compression/gzip { };
|
gzip = callPackage ../tools/compression/gzip { };
|
||||||
|
|
||||||
gzrt = callPackage ../tools/compression/gzrt { };
|
gzrt = callPackage ../tools/compression/gzrt { };
|
||||||
|
Loading…
Reference in New Issue
Block a user