From c75c5a5991d90805fa844308b7268851cc92cb15 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 19 Oct 2010 13:19:59 +0000 Subject: Add MP3Info, an MP3 tag editor. svn path=/nixpkgs/trunk/; revision=24363 --- pkgs/applications/audio/mp3info/default.nix | 42 +++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 pkgs/applications/audio/mp3info/default.nix (limited to 'pkgs/applications/audio/mp3info/default.nix') diff --git a/pkgs/applications/audio/mp3info/default.nix b/pkgs/applications/audio/mp3info/default.nix new file mode 100644 index 000000000000..86ffca4242fa --- /dev/null +++ b/pkgs/applications/audio/mp3info/default.nix @@ -0,0 +1,42 @@ +{ fetchurl, stdenv, ncurses, pkgconfig, gtk }: + +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"; + }; + + buildInputs = [ ncurses pkgconfig gtk ]; + + configurePhase = + '' sed -i Makefile \ + -e "s|^prefix=.*$|prefix=$out|g ; + s|/bin/rm|rm|g ; + s|/usr/bin/install|install|g" + ''; + + preInstall = + '' ensureDir "$out/bin" + ensureDir "$out/man/man1" + ''; + + meta = { + description = "MP3Info, an 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 = "GPLv2+"; + + maintainers = [ stdenv.lib.maintainers.ludo ]; + platforms = stdenv.lib.platforms.unix; + }; +} -- cgit 1.4.1