summary refs log tree commit diff
path: root/pkgs/development/libraries/libmkv/default.nix
blob: 48e710c208f43d3a91e5d9eee1ad27765bbec332 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchgit, libtool, autoconf, automake }:

stdenv.mkDerivation rec {
  name = "libmkv-${version}";
  version = "0.6.5.1";

  src = fetchgit {
    url = https://github.com/saintdev/libmkv.git;
    rev = "refs/tags/${version}";
    sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl";
  };

  nativeBuildInputs = [ libtool autoconf automake ];

  preConfigure = "sh bootstrap.sh";

  meta = {
    homepage = https://github.com/saintdev/libmkv;
    license = stdenv.lib.licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.wmertens ];
    platforms = stdenv.lib.platforms.unix;
  };
}