Commit 27fc9477 authored by aleksana's avatar aleksana
Browse files

mp3info: remove

parent d49f90a0
Loading
Loading
Loading
Loading
+0 −46
Original line number Diff line number Diff line
{ fetchurl, lib, stdenv, ncurses, pkg-config, gtk2 }:

stdenv.mkDerivation rec {
  pname = "mp3info";
  version = "0.8.5a";

  src = fetchurl {
    url = "ftp://ftp.ibiblio.org/pub/linux/apps/sound/mp3-utils/${pname}/${pname}-${version}.tgz";
    sha256 = "042f1czcs9n2sbqvg4rsvfwlqib2gk976mfa2kxlfjghx5laqf04";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ ncurses gtk2 ];

  hardeningDisable = [ "format" ];

  configurePhase =
    '' sed -i Makefile \
           -e "s|^prefix=.*$|prefix=$out|g ;
               s|/bin/rm|rm|g ;
               s|/usr/bin/install|install|g"
    '';

  preInstall =
    '' mkdir -p "$out/bin"
       mkdir -p "$out/man/man1"
    '';

  meta = {
    description = "MP3 technical info viewer and ID3 1.x tag editor";

    longDescription =
      '' MP3Info is a little utility used to read and modify the ID3 tags of
         MP3 files.  MP3Info can also display various techincal aspects of an
         MP3 file including playing time, bit-rate, sampling frequency and
         other attributes in a pre-defined or user-specifiable output format.
      '';

    homepage = "http://www.ibiblio.org/mp3info/";

    license = lib.licenses.gpl2Plus;

    maintainers = [ ];
    platforms = lib.platforms.linux;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -1016,6 +1016,7 @@ mapAliases ({
  moz-phab = mozphab; # Added 2022-08-09
  mozart-binary = throw "'mozart-binary' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10
  mozart = throw "'mozart' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10
  mp3info = throw "'mp3info' has been removed due to lack of maintenance upstream. Consider using 'eartag' or 'tagger' instead"; # Added 2024-09-14
  mpc_cli = mpc-cli; # moved from top-level 2022-01-24
  mpd_clientlib = libmpdclient; # Added 2021-02-11
  mpdevil = plattenalbum; # Added 2024-05-22
+0 −2
Original line number Diff line number Diff line
@@ -31775,8 +31775,6 @@ with pkgs;
  mp3gain = callPackage ../applications/audio/mp3gain { };
  mp3info = callPackage ../applications/audio/mp3info { };
  mp3splt = callPackage ../applications/audio/mp3splt { };
  mp3val = callPackage ../applications/audio/mp3val { };