83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
26 lines
667 B
Nix
26 lines
667 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "amf-headers";
|
|
version = "1.4.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GPUOpen-LibrariesAndSDKs";
|
|
repo = "AMF";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-gu8plGUUVE/De2bRjTUN8JKsmj/0r/IsqhMpln1DZGU=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include/AMF
|
|
cp -r amf/public/include/* $out/include/AMF
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Headers for The Advanced Media Framework (AMF)";
|
|
homepage = "https://github.com/GPUOpen-LibrariesAndSDKs/AMF";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ devusb ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|