nixpkgs/pkgs/development/libraries/libmp3splt/default.nix
Joachim Fasting 0dd4a30ec2
libmp3splt: 0.9.1 -> 0.9.2
While we're at it, also do some light refactorings
- multiple outputs
- use sourceforge mirror
- meta cleanup
2016-05-26 13:43:57 +02:00

24 lines
660 B
Nix

{ stdenv, fetchurl, libtool, libmad, libid3tag }:
stdenv.mkDerivation rec {
name = "libmp3splt-0.9.2";
src = fetchurl {
url = "mirror://sourceforge/mp3splt/${name}.tar.gz";
sha256 = "1p1mn2hsmj5cp40fnc8g1yfvk72p8pjxi866gjdkgjsqrr7xdvih";
};
outputs = [ "dev" "out" ];
nativeBuildInputs = [ libtool ];
buildInputs = [ libmad libid3tag ];
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;
};
}