3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #47197 from tg-x/ltc-tools-0.6.4

ltc-tools: init at 0.6.4
This commit is contained in:
Samuel Dionne-Riel 2018-11-12 23:39:12 +00:00 committed by GitHub
commit c99cb8fe83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View file

@ -4263,6 +4263,11 @@
github = "tex";
name = "Milan Svoboda";
};
tg-x = {
email = "*@tg-x.net";
github = "tg-x";
name = "TG Θ";
};
thall = {
email = "niclas.thall@gmail.com";
github = "thall";

View file

@ -0,0 +1,25 @@
{stdenv, fetchFromGitHub, pkgconfig, libltc, libsndfile, jack2}:
stdenv.mkDerivation rec {
name = "ltc-tools-${version}";
version = "0.6.4";
src = fetchFromGitHub {
owner = "x42";
repo = "ltc-tools";
rev = "v${version}";
sha256 = "1a7r99mwc7p5j5y453mrgph67wlznd674v4k2pfmlvc91s6lh44y";
};
buildInputs = [ pkgconfig libltc libsndfile jack2 ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = "https://github.com/x42/ltc-tools";
description = "Tools to deal with linear-timecode (LTC)";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ tg-x ];
};
}

View file

@ -17809,6 +17809,8 @@ with pkgs;
looking-glass-client = callPackage ../applications/virtualization/looking-glass-client { };
ltc-tools = callPackage ../applications/audio/ltc-tools { };
lumail = callPackage ../applications/networking/mailreaders/lumail {
lua = lua5_1;
};