python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libltc / default.nix
bloba290b9bce9e05f8211225e2378eae57a0abd1131
1 {lib, stdenv, fetchurl}:
3 stdenv.mkDerivation rec {
4   pname = "libltc";
5   version = "1.3.2";
7   src = fetchurl {
8     url = "https://github.com/x42/libltc/releases/download/v${version}/libltc-${version}.tar.gz";
9     sha256 = "sha256-Cm1CzWwh6SWif6Vg3EWsgAV9J18jNCECglkJwC07Ekk=";
10   };
12   meta = with lib; {
13     homepage = "http://x42.github.io/libltc/";
14     description = "POSIX-C Library for handling Linear/Logitudinal Time Code (LTC)";
15     license = licenses.lgpl3Plus;
16     platforms = platforms.all;
17   };