nixpkgs/pkgs/development/libraries/libmp3splt/default.nix

25 lines
694 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libtool, libmad, libid3tag }:
2014-07-07 18:38:14 +00:00
stdenv.mkDerivation rec {
name = "libmp3splt-0.9.2";
2015-10-12 13:57:02 +00:00
2014-07-07 18:38:14 +00:00
src = fetchurl {
url = "mirror://sourceforge/mp3splt/${name}.tar.gz";
sha256 = "1p1mn2hsmj5cp40fnc8g1yfvk72p8pjxi866gjdkgjsqrr7xdvih";
2014-07-07 18:38:14 +00:00
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ libtool ];
buildInputs = [ libmad libid3tag ];
2014-07-07 18:38:14 +00:00
2018-07-25 21:44:21 +00:00
configureFlags = [ "--disable-pcre" ];
2014-07-07 18:38:14 +00:00
meta = with lib; {
homepage = "https://sourceforge.net/projects/mp3splt/";
description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
2014-07-07 18:38:14 +00:00
maintainers = with maintainers; [ bosu ];
platforms = platforms.unix;
2018-10-18 19:05:05 +00:00
license = licenses.gpl2;
2014-07-07 18:38:14 +00:00
};
}