libmkv: rm old HandBrake patches

Patches no longer used in HandBrake upstream
This commit is contained in:
Anton-Latukha
2018-05-10 11:29:36 +03:00
parent 3d879e0fcf
commit e619a49e2e
4 changed files with 4 additions and 75 deletions
+4 -11
View File
@@ -1,26 +1,19 @@
{ stdenv, fetchgit, libtool, autoconf, automake }:
stdenv.mkDerivation rec {
name = "libmkv-0.6.5.1p2";
name = "libmkv-${version}";
version = "0.6.5.1";
src = fetchgit {
url = https://github.com/saintdev/libmkv.git;
rev = "refs/tags/0.6.5.1";
rev = "refs/tags/${version}";
sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl";
};
nativeBuildInputs = [ libtool autoconf automake ];
# TODO fix library version
preConfigure = "sh bootstrap.sh";
# From Handbrake
patches = [
./A01-hbmv-pgs.patch
./A02-audio-out-sampling-freq.patch
./P00-mingw-large-file.patch
];
meta = {
homepage = https://github.com/saintdev/libmkv;
license = stdenv.lib.licenses.gpl2;