27 lines
667 B
Nix
27 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;
|
||
|
};
|
||
|
}
|