Updated version of abcde to 2.5.4
- Added support for MusicBrainz queries to abcde package - Added new dependencies to abcde: mkcue, eject, perl, MusicBrainz, MusicBrainzDiscID - libdiscid version in pkg-config was incorrect; patched libdiscid to fix - Added WebServices::MusicBrainz Perl module - Added MusicBrainz::DiscID Perl module - Commented out XSLoader Perl module since it was broken, no packages depend on it, and it has been incorporated into the Perl core
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
{ stdenv, fetchurl, cmake }:
|
||||
{ stdenv, fetchurl, cmake, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libdiscid-0.2.2";
|
||||
|
||||
buildNativeInputs = [ pkgconfig ];
|
||||
buildInputs = [ cmake ];
|
||||
|
||||
src = fetchurl {
|
||||
@@ -10,6 +11,13 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "00l4ln9rk0vqf67iccwqrgc9qx1al92i05zylh85kd1zn9d5sjwp";
|
||||
};
|
||||
|
||||
# developer forgot to update his version number
|
||||
# this is propagated to pkg-config
|
||||
preConfigure = ''
|
||||
substituteInPlace "CMakeLists.txt" \
|
||||
--replace "PROJECT_VERSION 0.1.1" "PROJECT_VERSION 0.2.2"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A C library for creating MusicBrainz DiscIDs from audio CDs";
|
||||
homepage = http://musicbrainz.org/doc/libdiscid;
|
||||
|
||||
Reference in New Issue
Block a user