1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "Matroska-Org";
10 rev = "release-${version}";
11 sha256 = "sha256-36SfZUHJ2sIvrrHox583cQqfWWcrL2zW1IHzgDchC9g=";
14 nativeBuildInputs = [ cmake pkg-config ];
17 "-DBUILD_SHARED_LIBS=YES"
18 "-DCMAKE_INSTALL_PREFIX="
22 description = "Extensible Binary Meta Language library";
23 homepage = "https://dl.matroska.org/downloads/libebml/";
24 license = licenses.lgpl21;
25 maintainers = with maintainers; [ spwhitt ];
26 platforms = platforms.unix;