nixpkgs/pkgs/by-name/tp/tplay/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.3 KiB
Nix
Raw Normal View History

2024-07-11 02:49:51 +01:00
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
clang,
ffmpeg,
openssl,
alsa-lib,
libclang,
opencv,
makeWrapper,
}:
rustPlatform.buildRustPackage rec {
pname = "tplay";
2024-03-31 23:57:39 +01:00
version = "0.5.0";
src = fetchFromGitHub {
owner = "maxcurzi";
repo = "tplay";
2024-07-11 02:49:51 +01:00
rev = "v${version}";
2024-03-31 23:57:39 +01:00
hash = "sha256-/3ui0VOxf+kYfb0JQXPVbjAyXPph2LOg2xB0DGmAbwc=";
};
2024-03-31 23:57:39 +01:00
cargoHash = "sha256-zRkIEH37pvxHUbnfg25GW1Z7od9XMkRmP2Qvs64uUjg=";
checkFlags = [
2024-07-11 02:49:51 +01:00
# requires network access
"--skip=pipeline::image_pipeline::tests::test_process"
"--skip=pipeline::image_pipeline::tests::test_to_ascii"
"--skip=pipeline::image_pipeline::tests::test_to_ascii_ext"
"--skip=pipeline::runner::tests::test_time_to_send_next_frame"
];
2024-04-17 01:30:10 +01:00
nativeBuildInputs = [
rustPlatform.bindgenHook
pkg-config
clang
ffmpeg
2024-07-11 02:49:51 +01:00
makeWrapper
2024-04-17 01:30:10 +01:00
];
buildInputs = [
openssl.dev
alsa-lib.dev
libclang.lib
ffmpeg.dev
opencv
];
2024-07-11 02:49:51 +01:00
postFixup = ''
wrapProgram $out/bin/tplay \
--prefix PATH : "${lib.makeBinPath [ ffmpeg ]}"
'';
meta = {
description = "Terminal Media Player";
homepage = "https://github.com/maxcurzi/tplay";
platforms = lib.platforms.linux;
license = lib.licenses.mit;
2024-07-11 02:49:51 +01:00
maintainers = with lib.maintainers; [
demine
colemickens
];
};
}