push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation rec {
pname = "mp4fpsmod";
version = "0.27-unstable-2023-12-30";
src = fetchFromGitHub {
owner = "nu774";
repo = "mp4fpsmod";
rev = "e2dd065012f4d2c7e42d4acdefee2ffdc50d3d86";
hash = "sha256-54pkjlvLLi4pLlQA/l+v4Mx5HlloR6GiB2GP71A0x/g=";
};
nativeBuildInputs = [ autoreconfHook ];
enableParallelBuilding = true;
preConfigure = ''
./bootstrap.sh
'';
meta = with lib; {
description = "Tiny mp4 time code editor";
longDescription = ''
Tiny mp4 time code editor. You can use this for changing fps,
delaying audio tracks, executing DTS compression, extracting
time codes of mp4.
'';
inherit (src.meta) homepage;
license = with licenses; [
# All files are distributed as Public Domain, except for the followings:
publicDomain
mpl11 # mp4v2
boost # Boost
bsd2 # FreeBSD CVS
];
platforms = platforms.unix;
maintainers = with maintainers; [ huggy ];
mainProgram = "mp4fpsmod";
};
}