1{stdenv, fetchurl}:
2
3stdenv.mkDerivation {
4 name = "libltc-1.3.0";
5
6 src = fetchurl {
7 url = https://github.com/x42/libltc/releases/download/v1.3.0/libltc-1.3.0.tar.gz;
8 sha256 = "0p7fgp44i9d1lrgbk5zj3sm5yzavx428zn36xb3bl7y65c2xxcda";
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}