ltc-tools: init at 0.6.4
This commit is contained in:
parent
3d4050ce48
commit
46a46db8c1
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -17807,6 +17807,8 @@ with pkgs;
|
||||||
|
|
||||||
looking-glass-client = callPackage ../applications/virtualization/looking-glass-client { };
|
looking-glass-client = callPackage ../applications/virtualization/looking-glass-client { };
|
||||||
|
|
||||||
|
ltc-tools = callPackage ../applications/audio/ltc-tools { };
|
||||||
|
|
||||||
lumail = callPackage ../applications/networking/mailreaders/lumail {
|
lumail = callPackage ../applications/networking/mailreaders/lumail {
|
||||||
lua = lua5_1;
|
lua = lua5_1;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue