Author: ludo
Date: Tue Oct 19 13:19:59 2010
New Revision: 24363
URL: https://svn.nixos.org/websvn/nix/?rev=24363&sc=1

Log:
Add MP3Info, an MP3 tag editor.

Added:
   nixpkgs/trunk/pkgs/applications/audio/mp3info/
   nixpkgs/trunk/pkgs/applications/audio/mp3info/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Added: nixpkgs/trunk/pkgs/applications/audio/mp3info/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/applications/audio/mp3info/default.nix   Tue Oct 19 
13:19:59 2010        (r24363)
@@ -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;
+  };
+}

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Tue Oct 19 11:39:24 
2010        (r24362)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Tue Oct 19 13:19:59 
2010        (r24363)
@@ -5957,6 +5957,8 @@
     inherit (xlibs) libX11 xproto;
   };
 
+  mp3info = callPackage ../applications/audio/mp3info { };
+
   mpc123 = callPackage ../applications/audio/mpc123 { };
 
   mpg321 = callPackage ../applications/audio/mpg321 { };
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to