2015-10-12 14:57:02 +01:00
|
|
|
{ stdenv, fetchurl, libtool, libmad, libid3tag }:
|
2014-07-07 19:38:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-26 12:29:46 +01:00
|
|
|
name = "libmp3splt-0.9.2";
|
2015-10-12 14:57:02 +01:00
|
|
|
|
2014-07-07 19:38:14 +01:00
|
|
|
src = fetchurl {
|
2016-05-26 12:29:46 +01:00
|
|
|
url = "mirror://sourceforge/mp3splt/${name}.tar.gz";
|
|
|
|
sha256 = "1p1mn2hsmj5cp40fnc8g1yfvk72p8pjxi866gjdkgjsqrr7xdvih";
|
2014-07-07 19:38:14 +01:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-05-26 12:29:46 +01:00
|
|
|
nativeBuildInputs = [ libtool ];
|
|
|
|
buildInputs = [ libmad libid3tag ];
|
2014-07-07 19:38:14 +01:00
|
|
|
|
|
|
|
configureFlags = "--disable-pcre";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://sourceforge.net/projects/mp3splt/;
|
2016-05-26 12:29:46 +01:00
|
|
|
description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
|
2014-07-07 19:38:14 +01:00
|
|
|
maintainers = with maintainers; [ bosu ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|