lol

libmatroska: 1.4.8 -> 1.4.9

+15 -8
+15 -8
pkgs/development/libraries/libmatroska/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, libebml }: 2 3 stdenv.mkDerivation rec { 4 - name = "libmatroska-1.4.8"; 5 6 - src = fetchurl { 7 - url = "https://dl.matroska.org/downloads/libmatroska/${name}.tar.xz"; 8 - sha256 = "14n9sw974prr3yp4yjb7aadi6x2yz5a0hjw8fs3qigy5shh2piyq"; 9 }; 10 11 - nativeBuildInputs = [ pkgconfig ]; 12 13 buildInputs = [ libebml ]; 14 15 meta = with stdenv.lib; { 16 description = "A library to parse Matroska files"; 17 homepage = https://matroska.org/; 18 license = licenses.lgpl21; 19 - maintainers = [ maintainers.spwhitt ]; 20 platforms = platforms.unix; 21 }; 22 } 23 -
··· 1 + { stdenv, fetchFromGitHub, cmake, pkgconfig 2 + , libebml }: 3 4 stdenv.mkDerivation rec { 5 + name = "libmatroska-${version}"; 6 + version = "1.4.9"; 7 8 + src = fetchFromGitHub { 9 + owner = "Matroska-Org"; 10 + repo = "libmatroska"; 11 + rev = "release-${version}"; 12 + sha256 = "1hfrcpvmyqnvdkw8rz1z20zw7fpnjyl5h0g9ky7k6y1a44b1fz86"; 13 }; 14 15 + nativeBuildInputs = [ cmake pkgconfig ]; 16 17 buildInputs = [ libebml ]; 18 19 + cmakeFlags = [ 20 + "-DBUILD_SHARED_LIBS=YES" 21 + ]; 22 + 23 meta = with stdenv.lib; { 24 description = "A library to parse Matroska files"; 25 homepage = https://matroska.org/; 26 license = licenses.lgpl21; 27 + maintainers = with maintainers; [ spwhitt ]; 28 platforms = platforms.unix; 29 }; 30 }