2016-09-11 23:24:51 +02:00
|
|
|
{ fetchurl, stdenv, ncurses, pkgconfig, gtk2 }:
|
2010-10-19 15:19:59 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mp3info-0.8.5a";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.ibiblio.org/pub/linux/apps/sound/mp3-utils/mp3info/${name}.tgz";
|
|
|
|
sha256 = "042f1czcs9n2sbqvg4rsvfwlqib2gk976mfa2kxlfjghx5laqf04";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ ncurses gtk2 ];
|
2010-10-19 15:19:59 +02:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 13:34:15 +01:00
|
|
|
|
2010-10-19 15:19:59 +02:00
|
|
|
configurePhase =
|
|
|
|
'' sed -i Makefile \
|
|
|
|
-e "s|^prefix=.*$|prefix=$out|g ;
|
|
|
|
s|/bin/rm|rm|g ;
|
|
|
|
s|/usr/bin/install|install|g"
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall =
|
2012-01-18 21:16:00 +01:00
|
|
|
'' mkdir -p "$out/bin"
|
|
|
|
mkdir -p "$out/man/man1"
|
2010-10-19 15:19:59 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "MP3 technical info viewer and ID3 1.x tag editor";
|
2010-10-19 15:19:59 +02:00
|
|
|
|
|
|
|
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/;
|
|
|
|
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-10-19 15:19:59 +02:00
|
|
|
|
2015-01-13 22:33:24 +01:00
|
|
|
maintainers = [ ];
|
2017-09-22 16:24:29 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-10-19 15:19:59 +02:00
|
|
|
};
|
|
|
|
}
|