timelens: init at 0.1.1

This commit is contained in:
Janik H 2023-08-05 23:58:29 +02:00 committed by Anderson Torres
parent fa942bfe07
commit 7a49ac2684
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, glib
, gst_all_1
, wrapGAppsHook
}:
rustPlatform.buildRustPackage rec {
pname = "timelens";
version = "0.1.1";
src = fetchFromGitHub {
owner = "timelens";
repo = "timelens";
rev = version;
hash = "sha256-cGFM1QOuavGwGBccUEttSTp+aD+d31Cqul+AQYvbyhY=";
};
cargoHash = "sha256-rVE2foebSEk3zJQTAkmhoIOFyMArGnt9tLlOS7RjQYM=";
nativeBuildInputs = [
pkg-config
wrapGAppsHook
];
buildInputs = [
glib
gst_all_1.gstreamer
gst_all_1.gst-libav
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-ugly
];
meta = {
description = "A open source project for creating visual timelines";
homepage = "https://timelens.blinry.org";
changelog = "https://github.com/timelens/timelens/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ janik ];
};
}

View File

@ -13562,6 +13562,8 @@ with pkgs;
timelapse-deflicker = callPackage ../applications/graphics/timelapse-deflicker { };
timelens = callPackage ../applications/video/timelens { };
timetrap = callPackage ../applications/office/timetrap { };
timetagger = callPackage ../servers/timetagger { };