nixpkgs/pkgs/development/libraries/libltc/default.nix
Ryan Mulligan c150872140 libltc: 1.1.4 -> 1.3.0
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.3.0 with grep in /nix/store/wcvgcfp7naydayalzwgq7ivwqrclyrgh-libltc-1.3.0
- found 1.3.0 in filename of file in /nix/store/wcvgcfp7naydayalzwgq7ivwqrclyrgh-libltc-1.3.0
2018-02-26 20:43:41 -08:00

18 lines
479 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libltc-1.3.0";
src = fetchurl {
url = https://github.com/x42/libltc/releases/download/v1.3.0/libltc-1.3.0.tar.gz;
sha256 = "0p7fgp44i9d1lrgbk5zj3sm5yzavx428zn36xb3bl7y65c2xxcda";
};
meta = with stdenv.lib; {
homepage = http://x42.github.io/libltc/;
description = "POSIX-C Library for handling Linear/Logitudinal Time Code (LTC)";
license = licenses.lgpl3Plus;
platforms = platforms.all;
};
}