summary refs log tree commit diff
path: root/pkgs/development/tools/dcadec/default.nix
blob: 55f888056cf72308ab8cc76d88907e8077e5c222 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "dcadec";
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "foo86";
    repo = pname;
    rev = "v" + version;
    sha256 = "07nd0ajizrp1w02bsyfcv18431r8m8rq8gjfmz9wmckpg7cxj2hs";
  };

  installPhase = "make PREFIX=/ DESTDIR=$out install";

  doCheck = false; # fails with "ERROR: Run 'git submodule update --init test/samples' first."

  meta = with stdenv.lib; {
    description = "DTS Coherent Acoustics decoder with support for HD extensions";
    maintainers = with maintainers; [ edwtjo ];
    homepage = "https://github.com/foo86/dcadec";
    license = licenses.lgpl21;
    platforms = platforms.linux;
  };
}