openh246: init at 1.4.0

This commit is contained in:
Thomas Strobel 2015-08-26 17:42:13 +02:00
parent c35309ff0b
commit 444b8484d7

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, nasm }:
stdenv.mkDerivation rec {
name = "openh264-1.4.0";
src = fetchurl {
url = "https://github.com/cisco/openh264/archive/v1.4.0.tar.gz";
sha256 = "08haj0xkyjlwbpqdinxk0cmvqw89bx89ly0kqs9lf87fy6ksgfd1";
};
buildInputs = [ nasm ];
installPhase = ''
make PREFIX=$out install
'';
meta = with stdenv.lib; {
description = "A codec library which supports H.264 encoding and decoding";
homepage = http://www.openh264.org;
license = stdenv.licenses.bsd2;
};
}