2015-10-12 15:57:02 +02:00
|
|
|
{ stdenv, fetchurl, libtool, libmad, libid3tag }:
|
2014-07-07 20:38:14 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libmp3splt-0.9.1";
|
2015-10-12 15:57:02 +02:00
|
|
|
|
2014-07-07 20:38:14 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
|
|
|
|
sha256 = "17ar9d669cnirkz1kdrim687wzi36y8inapnj4svlsvr00vdzfxa";
|
|
|
|
};
|
|
|
|
|
2015-10-12 15:57:02 +02:00
|
|
|
buildInputs = [ libtool libmad libid3tag ];
|
2014-07-07 20:38:14 +02:00
|
|
|
|
|
|
|
configureFlags = "--disable-pcre";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://sourceforge.net/projects/mp3splt/;
|
|
|
|
description = "utility to split mp3, ogg vorbis and FLAC files without decoding";
|
|
|
|
maintainers = with maintainers; [ bosu ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|