fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, libtool, libmad, libid3tag }:
2
3stdenv.mkDerivation rec {
4 name = "libmp3splt-0.9.1";
5
6 src = fetchurl {
7 url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
8 sha256 = "17ar9d669cnirkz1kdrim687wzi36y8inapnj4svlsvr00vdzfxa";
9 };
10
11 buildInputs = [ libtool libmad libid3tag ];
12
13 configureFlags = "--disable-pcre";
14
15 meta = with stdenv.lib; {
16 homepage = http://sourceforge.net/projects/mp3splt/;
17 description = "utility to split mp3, ogg vorbis and FLAC files without decoding";
18 maintainers = with maintainers; [ bosu ];
19 platforms = platforms.unix;
20 };
21}