2017-08-01 02:13:33 +02:00
|
|
|
{ stdenv, fetchFromGitHub, nasm }:
|
2015-08-26 17:42:13 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "openh264";
|
2020-05-25 02:55:02 +02:00
|
|
|
version = "2.1.1";
|
2015-08-26 17:42:13 +02:00
|
|
|
|
2017-08-01 02:13:33 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cisco";
|
2019-12-14 23:34:19 +01:00
|
|
|
repo = pname;
|
2017-08-01 02:13:33 +02:00
|
|
|
rev = "v${version}";
|
2020-05-25 02:55:02 +02:00
|
|
|
sha256 = "0ffav46pz3sbj92nipd62z03fibyqgclfq9w8lgr80s6za6zdk5s";
|
2015-08-26 17:42:13 +02:00
|
|
|
};
|
|
|
|
|
2019-12-14 23:34:19 +01:00
|
|
|
nativeBuildInputs = [ nasm ];
|
2015-08-26 17:42:13 +02:00
|
|
|
|
2019-12-14 23:34:19 +01:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2015-08-26 17:42:13 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A codec library which supports H.264 encoding and decoding";
|
2019-12-14 23:34:19 +01:00
|
|
|
homepage = "https://www.openh264.org";
|
|
|
|
license = licenses.bsd2;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.unix;
|
2015-08-26 17:42:13 +02:00
|
|
|
};
|
|
|
|
}
|