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/development/libraries/libcddb/default.nix

20 lines
547 B

{ stdenv, fetchurl, libiconv }:
stdenv.mkDerivation rec {
name = "libcddb-1.3.2";
src = fetchurl {
url = "mirror://sourceforge/libcddb/${name}.tar.bz2";
sha256 = "0fr21a7vprdyy1bq6s99m0x420c9jm5fipsd63pqv8qyfkhhxkim";
};
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
meta = with stdenv.lib; {
description = "C library to access data on a CDDB server (freedb.org)";
homepage = http://libcddb.sourceforge.net/;
license = licenses.lgpl2Plus;
platforms = platforms.linux ++ platforms.darwin;
};
}