mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +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.
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, ninja
|
|
, pkg-config
|
|
}:
|
|
|
|
# Warning: We are aware that the upstream changed and there are new releases,
|
|
# this got initally packaged for obs-studio which appears to fail to build even upstream with the new version.
|
|
# https://github.com/NixOS/nixpkgs/pull/296191 / https://github.com/obsproject/obs-studio/pull/10037
|
|
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
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/lib/pkgconfig"
|
|
cat >"$out/lib/pkgconfig/libajantv2.pc" <<EOF
|
|
prefix=$out
|
|
libdir=\''${prefix}/lib
|
|
includedir=\''${prefix}/include/ajalibraries
|
|
|
|
Name: libajantv2
|
|
Description: Library for controlling AJA NTV2 video devices
|
|
Version: ${version}
|
|
Libs: -L\''${libdir} -lajantv2
|
|
Cflags: -I\''${includedir} -I\''${includedir}/ajantv2/includes
|
|
EOF
|
|
'';
|
|
|
|
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 = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|