mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
libmp3splt: enable libid3tag support
This commit is contained in:
parent
eac57e0289
commit
18a32bd8cd
1 changed files with 3 additions and 3 deletions
|
@ -1,14 +1,14 @@
|
|||
{stdenv, fetchurl, libtool, libmad }:
|
||||
{ stdenv, fetchurl, libtool, libmad, libid3tag }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libmp3splt-0.9.1";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
|
||||
sha256 = "17ar9d669cnirkz1kdrim687wzi36y8inapnj4svlsvr00vdzfxa";
|
||||
};
|
||||
|
||||
buildInputs = [ libtool libmad ];
|
||||
buildInputs = [ libtool libmad libid3tag ];
|
||||
|
||||
configureFlags = "--disable-pcre";
|
||||
|
||||
|
|
Loading…
Reference in a new issue