summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-12-28 01:26:52 +0000
committerGitHub <noreply@github.com>2020-12-28 09:26:52 +0800
commit6baecc0abbca252015212e1ab53ae8b48051475b (patch)
tree3562b0dd617f16cb372f8ed789589e2220806112 /pkgs/tools/audio
parent3325053530195348faca2c218ee552dc1d41b4cd (diff)
aucdtect: remove (#107611)
* aucdtect: remove * Update pkgs/top-level/aliases.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Peter Hoeg <peter@hoeg.com> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/aucdtect/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/tools/audio/aucdtect/default.nix b/pkgs/tools/audio/aucdtect/default.nix
deleted file mode 100644
index ad9d5fb86905..000000000000
--- a/pkgs/tools/audio/aucdtect/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv, fetchurl, lib, rpmextract }:
-
-with lib;
-
-stdenv.mkDerivation rec {
- pname = "aucdtect";
- version = "0.8-2";
-
- src = fetchurl {
- url = "http://www.true-audio.com/ftp/${pname}-${version}.i586.rpm";
- sha256 = "1lp5f0rq5b5n5il0c64m00gcfskarvgqslpryms9443d200y6mmd";
- };
-
- unpackCmd = "${rpmextract}/bin/rpmextract $src";
-
- installPhase = ''
- runHook preInstall
-
- install -Dm755 local/bin/auCDtect $out/bin/aucdtect
-
- runHook postInstall
- '';
-
- 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;
- };
-}