nixpkgs/pkgs/development/libraries/libebml/default.nix

28 lines
674 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, pkg-config }:
stdenv.mkDerivation rec {
2019-03-26 14:56:46 +00:00
pname = "libebml";
2020-07-03 21:37:30 +00:00
version = "1.4.0";
2018-07-14 09:44:18 +00:00
src = fetchFromGitHub {
owner = "Matroska-Org";
repo = "libebml";
rev = "release-${version}";
2020-07-03 21:37:30 +00:00
sha256 = "052v4mjynndj9xgfl4lmlsnx9ai0pah0kjyr5fm34l7gj8vhc5s7";
};
nativeBuildInputs = [ cmake pkg-config ];
2018-07-14 09:44:18 +00:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=YES"
];
2015-02-28 15:35:52 +00:00
meta = with stdenv.lib; {
description = "Extensible Binary Meta Language library";
homepage = "https://dl.matroska.org/downloads/libebml/";
2018-07-14 09:44:18 +00:00
license = licenses.lgpl21;
maintainers = with maintainers; [ spwhitt ];
2015-02-28 15:35:52 +00:00
platforms = platforms.unix;
};
}