20 lines
501 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-08-26 10:33:49 -03:00
name = "libebml-1.3.5";
src = fetchurl {
2017-08-26 10:33:49 -03:00
url = "http://dl.matroska.org/downloads/libebml/${name}.tar.xz";
sha256 = "005a0ipqnfbsq47zrc61zszi439jw32q5xd6dc1jyb3lc0zl266q";
};
2015-02-28 10:35:52 -05:00
meta = with stdenv.lib; {
description = "Extensible Binary Meta Language library";
2015-02-28 10:35:52 -05:00
license = licenses.lgpl21;
homepage = https://dl.matroska.org/downloads/libebml/;
2015-02-28 10:35:52 -05:00
maintainers = [ maintainers.spwhitt ];
platforms = platforms.unix;
};
}