linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libmkv / default.nix
blob584d76e1cf2b30420f4d303095986a1c2a8c99ca
1 { lib, stdenv, fetchFromGitHub, libtool, autoconf, automake }:
3 stdenv.mkDerivation rec {
4   pname = "libmkv";
5   version = "0.6.5.1";
7   src = fetchFromGitHub {
8     owner = "saintdev";
9     repo = pname;
10     rev = "refs/tags/${version}";
11     sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl";
12   };
14   nativeBuildInputs = [ libtool autoconf automake ];
16   preConfigure = "sh bootstrap.sh";
18   meta = {
19     description = "Abandoned library. Alternative lightweight Matroska muxer written for HandBrake";
20     longDescription = ''
21       Library was meant to be an alternative to the official libmatroska library.
22       It is written in plain C, and intended to be very portable.
23     '';
24     homepage = "https://github.com/saintdev/libmkv";
25     license = lib.licenses.gpl2;
26     maintainers = [ lib.maintainers.wmertens ];
27     platforms = lib.platforms.unix;
28   };