My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/audio/mp3splt/default.nix

26 lines
741 B

{ lib, stdenv, fetchurl, pkg-config, libmp3splt }:
stdenv.mkDerivation rec {
pname = "mp3splt";
version = "2.6.2";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
sha256 = "1aiv20gypb6r84qabz8gblk8vi42cg3x333vk2pi3fyqvl82phry";
};
configureFlags = [ "--enable-oggsplt-symlink" "--enable-flacsplt-symlink" ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libmp3splt ];
outputs = [ "out" "man" ];
meta = with lib; {
description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
homepage = "https://sourceforge.net/projects/mp3splt/";
license = licenses.gpl2;
maintainers = [ maintainers.bosu ];
platforms = platforms.unix;
};
}