Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pkgs/by-name/cc/cctv-viewer/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
libva,
}:

stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "cctv-viewer";
version = "0.1.9-unstable-2025-06-13";
version = "0.1.9-dev";

src = fetchFromGitHub {
owner = "iEvgeny";
repo = "cctv-viewer";
rev = "8a8fff2612ae2123b8be156c954a29706383b480";
rev = "v${version}";
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
rev = "v${version}";
tag = "v${version}";

hash = "sha256-Euw9S+iONAEENkFwo169x/+pcyeTXLe8wb70KKjv3bE=";
fetchSubmodules = true;
};
Expand Down Expand Up @@ -55,7 +55,7 @@ stdenv.mkDerivation {
'';

meta = {
description = "Viewer and mounter for video streams";
description = "A simple Qt application for simultaneously viewing multiple video streams. Designed for high performance and low latency. Based on ffmpeg.";
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Description must not start with an article and be a single sentence, see here. You can use longDescription if you want to write more.

Suggested change
description = "A simple Qt application for simultaneously viewing multiple video streams. Designed for high performance and low latency. Based on ffmpeg.";
description = "Simple Qt application for simultaneously viewing multiple video streams";

homepage = "https://cctv-viewer.org";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ teohz ];
Expand Down
Loading