libajantv2: init at 16.2-bugfix5

This commit is contained in:
Sebastian Sellmeier 2022-10-05 12:28:46 +02:00
parent fd54651f5f
commit a200133ecf
No known key found for this signature in database
GPG Key ID: 51E2BE0CCC826F98
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ stdenv
, lib
, fetchFromGitHub
, cmake
, ninja
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "libajantv2";
version = "16.2-bugfix5";
src = fetchFromGitHub {
owner = "aja-video";
repo = "ntv2";
rev = "v${version}";
sha256 = "sha256-h5PKWMwqTeI5/EaTWkjYojuvDU0FyMpzIjWB98UOJwc=";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [
cmake
ninja
pkg-config
];
meta = with lib; {
description = "AJA NTV2 Open Source Static Libs and Headers for building applications that only wish to statically link against";
homepage = "https://github.com/aja-video/ntv2";
license = with licenses; [ mit ];
maintainers = with maintainers; [ sebtm ];
platforms = platforms.linux;
};
}

View File

@ -24574,6 +24574,8 @@ with pkgs;
libaio = callPackage ../os-specific/linux/libaio { };
libajantv2 = callPackage ../development/libraries/libajantv2 {};
libargon2 = callPackage ../development/libraries/libargon2 { };
libatasmart = callPackage ../os-specific/linux/libatasmart { };