lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 20 lines 614 B view raw
1{ fetchurl, stdenv, libmp3splt, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name = "mp3splt-2.6.1"; 5 6 src = fetchurl { 7 url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz"; 8 sha256 = "783a903fafbcf47f06673136a78b78d32a8e616a6ae06b79b459a32090dd14f7"; 9 }; 10 11 buildInputs = [ libmp3splt pkgconfig ]; 12 13 meta = { 14 description = "utility to split mp3, ogg vorbis and FLAC files without decoding"; 15 homepage = http://sourceforge.net/projects/mp3splt/; 16 license = stdenv.lib.licenses.gpl2; 17 maintainers = [ stdenv.lib.maintainers.bosu ]; 18 platforms = stdenv.lib.platforms.unix; 19 }; 20}