1{stdenv, fetchurl}:
2
3stdenv.mkDerivation {
4 name = "libltc-1.1.4";
5
6 src = fetchurl {
7 url = https://github.com/x42/libltc/releases/download/v1.1.4/libltc-1.1.4.tar.gz;
8 sha256 = "0xas0zbi11nhq15al6cxn0iwa563s6fcz01hw0np1clh25h4773x";
9 };
10
11 meta = with stdenv.lib; {
12 homepage = http://x42.github.io/libltc/;
13 description = "POSIX-C Library for handling Linear/Logitudinal Time Code (LTC)";
14 license = licenses.lgpl3Plus;
15 platforms = platforms.all;
16 };
17}