Add vorbisgain - replaygain for ogg/vorbis

svn path=/nixpkgs/trunk/; revision=26176
This commit is contained in:
Yury G. Kudryashov 2011-03-06 16:07:37 +00:00
parent ecf4f6b4e2
commit c8f0c74ecc
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl, unzip, libogg, libvorbis }:
stdenv.mkDerivation rec {
name = "vorbisgain-0.34";
src = fetchurl {
url = "http://sjeng.org/ftp/vorbis/${name}.zip";
sha256 = "1sjxl20ahhjv63b8a99sq9p14vz3lf1gacivkk0x2c11cc9zw4nr";
};
buildInputs = [ unzip libogg libvorbis ];
patchPhase = ''
chmod -v +x configure
sed -e 's/^ /\t/' -i Makefile.*
configureFlags="--mandir=$out/share/man"
'';
}

View file

@ -1348,6 +1348,8 @@ let
libXp;
};
vorbisgain = callPackage ../tools/misc/vorbisgain { };
vpnc = callPackage ../tools/networking/vpnc { };
vtun = callPackage ../tools/networking/vtun { };