Skip to content

Commit

Permalink
libcdio-0.82 for abcde
Browse files Browse the repository at this point in the history
libcdio-0.9x lacks cd-paranoia needed by abcde. Bring back 0.82 for
abcde until we sort out where cd-paranoia went to.
  • Loading branch information
chaoflow committed Feb 2, 2014
1 parent 177b0a0 commit 9fb8624
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/development/libraries/libcdio/0.82.nix
@@ -0,0 +1,27 @@
{ fetchurl, stdenv, libcddb, pkgconfig, ncurses, help2man }:

stdenv.mkDerivation rec {
name = "libcdio-0.82";

src = fetchurl {
url = "mirror://gnu/libcdio/${name}.tar.gz";
sha256 = "0fax1dzy84dzs20bmpq2gfw6hc1x2x9mhk53wynhcycjw3l3vjqs";
};

buildInputs = [ libcddb pkgconfig ncurses help2man ];

# Disabled because one test (check_paranoia.sh) fails.
#doCheck = true;

meta = {
description = "A library for OS-independent CD-ROM and CD image access";
longDescription = ''
GNU libcdio is a library for OS-idependent CD-ROM and
CD image access. It includes a library for working with
ISO-9660 filesystems (libiso9660), as well as utility
programs such as an audio CD player and an extractor.
'';
license = "GPLv2+";
homepage = http://www.gnu.org/software/libcdio/;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -4590,6 +4590,7 @@ let
libcddb = callPackage ../development/libraries/libcddb { };

libcdio = callPackage ../development/libraries/libcdio { };
libcdio082 = callPackage ../development/libraries/libcdio/0.8.2.nix { };

libcdr = callPackage ../development/libraries/libcdr { lcms = lcms2; };

Expand Down Expand Up @@ -7339,6 +7340,7 @@ let

abcde = callPackage ../applications/audio/abcde {
inherit (perlPackages) DigestSHA MusicBrainz MusicBrainzDiscID;
libcdio = libcdio082;
};

abiword = callPackage ../applications/office/abiword {
Expand Down

0 comments on commit 9fb8624

Please sign in to comment.