summary refs log tree commit diff
path: root/pkgs/tools/audio/aucdtect/default.nix
blob: 825e1a0cc07293d10ab65293a5acc24e80ff8c1e (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
26
27
28
29
30
{ stdenv, fetchurl, lib, rpmextract }:

with lib;

stdenv.mkDerivation rec {
  name = "aucdtext-${version}";
  version = "0.8-2";

  src = fetchurl {
    url = "http://www.true-audio.com/ftp/aucdtect-${version}.i586.rpm";
    sha256 = "1lp5f0rq5b5n5il0c64m00gcfskarvgqslpryms9443d200y6mmd";
  };

  unpackCmd = "${rpmextract}/bin/rpmextract $src";

  installPhase = ''
    mkdir -p $out/bin
    install -m755 local/bin/auCDtect $out/bin/aucdtect
  '';

  dontStrip = true;

  meta = with stdenv.lib; {
    description = "Verify authenticity of lossless audio files";
    homepage = http://tausoft.org;
    license = licenses.unfreeRedistributable;
    maintainers = with maintainers; [ peterhoeg ];
    platforms = platforms.linux;
  };
}