Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5930d8091cf5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c99cb8fe83ae
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 12, 2018

  1. maintainers: add tg-x

    tg-x committed Nov 12, 2018
    Copy the full SHA
    3d4050c View commit details
  2. ltc-tools: init at 0.6.4

    tg-x committed Nov 12, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    46a46db View commit details
  3. Merge pull request #47197 from tg-x/ltc-tools-0.6.4

    ltc-tools: init at 0.6.4
    samueldr authored Nov 12, 2018
    Copy the full SHA
    c99cb8f View commit details
Showing with 32 additions and 0 deletions.
  1. +5 −0 maintainers/maintainer-list.nix
  2. +25 −0 pkgs/applications/audio/ltc-tools/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -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 changes: 25 additions & 0 deletions pkgs/applications/audio/ltc-tools/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -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;
};