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

17 lines
408 B

{fetchurl, stdenv}:
stdenv.mkDerivation rec {
name = "libcddb-1.3.0";
src = fetchurl {
url = "mirror://sourceforge/libcddb/${name}.tar.bz2";
sha256 = "1y8bfy12dwm41m1jahayn3v47dm34fmz7m9cjxyh7xcw6fp3lzaf";
};
meta = {
description = "Libcddb is a C library to access data on a CDDB server (freedb.org)";
license = "LGPLv2+";
homepage = http://libcddb.sourceforge.net/;
};
}