nixpkgs/pkgs/tools/video/atomicparsley/default.nix

50 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, zlib, Cocoa }:
2015-03-13 23:06:37 +01:00
stdenv.mkDerivation rec {
pname = "atomicparsley";
version = "20210715.151551.e7ad03a";
2015-03-13 23:06:37 +01:00
src = fetchFromGitHub {
owner = "wez";
repo = pname;
rev = version;
sha256 = "sha256-77yWwfdEul4uLsUNX1dLwj8K0ilcuBaTVKMyXDvKVx4=";
2015-03-13 23:06:37 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ]
2021-01-15 10:19:50 +01:00
++ lib.optionals stdenv.isDarwin [ Cocoa ];
2017-03-21 23:35:54 +01:00
installPhase = ''
runHook preInstall
install -D AtomicParsley $out/bin/AtomicParsley
runHook postInstall
'';
2015-03-13 23:06:37 +01:00
doCheck = true;
postPatch = ''
patchShebangs tests/test.sh
'';
# copying files so that we dont need to patch the test.sh
checkPhase = ''
(
cp AtomicParsley ../tests
cd ../tests
mkdir tests
mv *.mp4 tests
./test.sh
)
'';
meta = with lib; {
description = "A CLI program for reading, parsing and setting metadata into MPEG-4 files";
homepage = "https://github.com/wez/atomicparsley";
license = licenses.gpl2Plus;
2015-03-13 23:06:37 +01:00
platforms = platforms.unix;
maintainers = with maintainers; [ pjones ];
};
}