nixpkgs/pkgs/development/libraries/libebml/default.nix
R. RyanTM 7fa446d1d0 libebml: 1.3.7 -> 1.3.9
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libebml/versions
2019-06-01 19:33:28 -07:00

28 lines
670 B
Nix

{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
stdenv.mkDerivation rec {
pname = "libebml";
version = "1.3.9";
src = fetchFromGitHub {
owner = "Matroska-Org";
repo = "libebml";
rev = "release-${version}";
sha256 = "0q2xfabaymrf0xkhwc9akx6m04lgra2b53wcn9mnh5dqiiazizi7";
};
nativeBuildInputs = [ cmake pkgconfig ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=YES"
];
meta = with stdenv.lib; {
description = "Extensible Binary Meta Language library";
homepage = https://dl.matroska.org/downloads/libebml/;
license = licenses.lgpl21;
maintainers = with maintainers; [ spwhitt ];
platforms = platforms.unix;
};
}