summary refs log tree commit diff
path: root/pkgs/development/libraries/libmp3splt/default.nix
blob: 52072000115ce8224513497f63035a97c3ec93e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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 = [ "out" "dev" ];
  nativeBuildInputs = [ libtool ];
  buildInputs = [ libmad libid3tag ];

  configureFlags = [ "--disable-pcre" ];

  meta = with stdenv.lib; {
    homepage    = https://sourceforge.net/projects/mp3splt/;
    description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
    maintainers = with maintainers; [ bosu ];
    platforms   = platforms.unix;
    license = licenses.gpl2;
  };
}