summary refs log tree commit diff
path: root/pkgs/development/libraries/libmp3splt/default.nix
blob: 9ad2498dfa0f9dbfd3ac5eedfaa363248ba18ccd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, libtool, libmad }:

stdenv.mkDerivation rec {
  name = "libmp3splt-0.9.1";
  
  src = fetchurl {
    url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
    sha256 = "17ar9d669cnirkz1kdrim687wzi36y8inapnj4svlsvr00vdzfxa";
  };

  buildInputs = [ libtool libmad ];

  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;
  };
}