mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
a17216af4c
Make either 'bin' or 'out' the first output.
24 lines
660 B
Nix
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 = [ "out" "dev" ];
|
|
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;
|
|
};
|
|
}
|