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>
This commit is contained in:
parent
3325053530
commit
6baecc0abb
@ -5,8 +5,6 @@
|
||||
, installShellFiles
|
||||
, flac
|
||||
, sox
|
||||
, withAucdtect ? false
|
||||
, aucdtect ? null
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -36,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/redoflacs \
|
||||
--prefix PATH : ${stdenv.lib.makeBinPath ([ flac sox ] ++ lib.optional withAucdtect aucdtect)}
|
||||
--prefix PATH : ${stdenv.lib.makeBinPath ([ flac sox ])}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
@ -61,6 +61,7 @@ mapAliases ({
|
||||
asterisk_15 = throw "asterisk_15: Asterisk 15 is end of life and has been removed."; # added 2020-10-07
|
||||
at_spi2_atk = at-spi2-atk; # added 2018-02-25
|
||||
at_spi2_core = at-spi2-core; # added 2018-02-25
|
||||
aucdtect = throw "aucdtect: Upstream no longer provides download urls."; # added 2020-12-26
|
||||
avldrums-lv2 = x42-avldrums; # added 2020-03-29
|
||||
bar-xft = lemonbar-xft; # added 2015-01-16
|
||||
bashCompletion = bash-completion; # Added 2016-09-28
|
||||
|
@ -28783,8 +28783,6 @@ in
|
||||
|
||||
mpvc = callPackage ../applications/misc/mpvc { };
|
||||
|
||||
aucdtect = callPackage ../tools/audio/aucdtect { };
|
||||
|
||||
togglesg-download = callPackage ../tools/misc/togglesg-download { };
|
||||
|
||||
discord = import ../applications/networking/instant-messengers/discord {
|
||||
|
Loading…
Reference in New Issue
Block a user