fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, zlib }:
2
3stdenv.mkDerivation rec {
4 version = "0.7.97";
5 name = "libmediainfo-${version}";
6 src = fetchurl {
7 url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz";
8 sha256 = "0rpxxbszi7i4hspdzdif9inhlwxdkf0iggaim6682clqb6pv7sld";
9 };
10
11 nativeBuildInputs = [ autoreconfHook pkgconfig ];
12 buildInputs = [ libzen zlib ];
13
14 sourceRoot = "./MediaInfoLib/Project/GNU/Library/";
15
16 configureFlags = [ "--enable-shared" ];
17
18 postInstall = ''
19 install -vD -m 644 libmediainfo.pc "$out/lib/pkgconfig/libmediainfo.pc"
20 '';
21
22 meta = with stdenv.lib; {
23 description = "Shared library for mediainfo";
24 homepage = http://mediaarea.net/;
25 license = licenses.bsd2;
26 platforms = platforms.unix;
27 maintainers = [ maintainers.devhell ];
28 };
29}