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:
commit
c99cb8fe83
|
@ -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";
|
||||
|
|
25
pkgs/applications/audio/ltc-tools/default.nix
Normal file
25
pkgs/applications/audio/ltc-tools/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue