01d4e2fe33
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that used `ffmpeg` without requiring a specific version now use ffmpeg_3 explicitly so they shouldn't change.
39 lines
903 B
Nix
39 lines
903 B
Nix
{ stdenv, fetchFromGitHub
|
|
, ffmpeg_3
|
|
, imagemagick
|
|
, makeWrapper
|
|
, mplayer
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gopro";
|
|
version = "1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KonradIT";
|
|
repo = "gopro-linux";
|
|
rev = version;
|
|
sha256 = "0sb9vpiadrq8g4ag828h8mvq01fg0306j0wjwkxdmwfqync1128l";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 gopro -t $out/bin
|
|
wrapProgram $out/bin/gopro \
|
|
--prefix PATH ":" "${stdenv.lib.makeBinPath [ ffmpeg_3 imagemagick mplayer ]}"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Command line interface for processing media filmed on GoPro HERO 3, 4, 5, 6, and 7 cameras";
|
|
homepage = "https://github.com/KonradIT/gopro-linux";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|