2022-09-09 14:08:57 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitLab
|
|
|
|
, rustPlatform
|
|
|
|
, pkg-config
|
|
|
|
, meson
|
|
|
|
, wrapGAppsHook4
|
|
|
|
, desktop-file-utils
|
|
|
|
, blueprint-compiler
|
|
|
|
, ninja
|
|
|
|
, gtk4
|
|
|
|
, libadwaita
|
|
|
|
, gst_all_1
|
2022-10-21 18:38:19 +00:00
|
|
|
, ffmpeg-full
|
2022-09-09 14:08:57 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "video-trimmer";
|
2022-10-21 18:38:19 +00:00
|
|
|
version = "0.8.0";
|
2022-09-09 14:08:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.gnome.org";
|
|
|
|
owner = "YaLTeR";
|
2022-10-21 18:38:19 +00:00
|
|
|
repo = pname;
|
2022-09-09 14:08:57 +00:00
|
|
|
rev = "v${version}";
|
2022-10-21 18:38:19 +00:00
|
|
|
hash = "sha256-0zhQoxzU1GikYP5OwqMl34RsnefJtdZox5EuTqOFnas=";
|
2022-09-09 14:08:57 +00:00
|
|
|
};
|
2022-10-21 18:38:19 +00:00
|
|
|
|
2022-09-09 14:08:57 +00:00
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
|
|
inherit src;
|
|
|
|
name = "${pname}-${version}";
|
2022-10-21 18:38:19 +00:00
|
|
|
hash = "sha256-kH9AfEskh7TTXF+PZwOZNWVJmnEeMJrSEEuDGyP5A5o=";
|
2022-09-09 14:08:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
meson
|
|
|
|
wrapGAppsHook4
|
|
|
|
desktop-file-utils
|
|
|
|
blueprint-compiler
|
|
|
|
ninja
|
|
|
|
# Present here in addition to buildInputs, because meson runs
|
|
|
|
# `gtk4-update-icon-cache` during installPhase, thanks to:
|
|
|
|
# https://gitlab.gnome.org/YaLTeR/video-trimmer/-/merge_requests/12
|
|
|
|
gtk4
|
|
|
|
] ++ (with rustPlatform; [
|
|
|
|
cargoSetupHook
|
|
|
|
rust.cargo
|
|
|
|
rust.rustc
|
|
|
|
]);
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk4
|
|
|
|
libadwaita
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
gst_all_1.gst-plugins-base
|
2022-10-30 15:09:59 +00:00
|
|
|
gst_all_1.gst-plugins-good # for scaletempo and webm
|
2022-09-09 14:08:57 +00:00
|
|
|
gst_all_1.gst-plugins-bad
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
--prefix PATH : "${lib.makeBinPath [ ffmpeg-full ]}"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
2022-09-09 14:08:57 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://gitlab.gnome.org/YaLTeR/video-trimmer";
|
|
|
|
description = "Trim videos quickly";
|
|
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|