base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / libmp3splt / package.nix
blob0e813375b9a251e517fbd695625bb8d3151b5f1c
1 { lib, stdenv, fetchurl, libtool, libmad, libid3tag }:
3 stdenv.mkDerivation rec {
4   pname = "libmp3splt";
5   version = "0.9.2";
7   src = fetchurl {
8     url = "mirror://sourceforge/mp3splt/${pname}-${version}.tar.gz";
9     sha256 = "1p1mn2hsmj5cp40fnc8g1yfvk72p8pjxi866gjdkgjsqrr7xdvih";
10   };
12   outputs = [ "out" "dev" ];
13   nativeBuildInputs = [ libtool ];
14   buildInputs = [ libmad libid3tag ];
16   configureFlags = [ "--disable-pcre" ];
18   meta = with lib; {
19     homepage    = "https://sourceforge.net/projects/mp3splt/";
20     description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
21     maintainers = with maintainers; [ bosu ];
22     platforms   = platforms.unix;
23     license = licenses.gpl2;
24   };