1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/development/libraries/libmatroska/default.nix

24 lines
571 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libebml }:
stdenv.mkDerivation rec {
2017-04-30 14:04:23 +01:00
name = "libmatroska-1.4.7";
src = fetchurl {
url = "http://dl.matroska.org/downloads/libmatroska/${name}.tar.bz2";
2017-04-30 14:04:23 +01:00
sha256 = "1yi5cnv13nhl27xyqayd5l3sf0j3swfj3apzibv71yg9pariwi26";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libebml ];
2015-03-05 20:46:13 +00:00
meta = with stdenv.lib; {
description = "A library to parse Matroska files";
homepage = https://matroska.org/;
2015-03-05 20:46:13 +00:00
license = licenses.lgpl21;
maintainers = [ maintainers.spwhitt ];
platforms = platforms.unix;
};
}