mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 09:54:52 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, ffmpeg, libui, unstableGitUpdater, wrapGAppsHook3 }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "untrunc-anthwlock";
|
|
version = "0-unstable-2024-08-14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anthwlock";
|
|
repo = "untrunc";
|
|
rev = "13cafedf59369db478af537fb909f0d7fd0eb85f";
|
|
hash = "sha256-4GIPj8so7POEwxKZzFBoJTu76XKbGHYmXC/ILeo0dVE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook3 ];
|
|
|
|
buildInputs = [ ffmpeg libui ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
make IS_RELEASE=1 untrunc
|
|
make IS_RELEASE=1 untrunc-gui
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D -t $out/bin untrunc untrunc-gui
|
|
runHook postInstall
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
# Only stale "latest" tag
|
|
hardcodeZeroVersion = true;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Restore a truncated mp4/mov (improved version of ponchio/untrunc)";
|
|
homepage = "https://github.com/anthwlock/untrunc";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|