Commit 7a49ac26 authored by Janik H's avatar Janik H Committed by Anderson Torres
Browse files

timelens: init at 0.1.1

parent fa942bfe
Loading
Loading
Loading
Loading
+45 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };