summary refs log tree commit diff
path: root/pkgs/development/libraries/libcddb/default.nix
blob: b9823cefd2d9566331ef5246414125c10a42efa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{fetchurl, stdenv}:

stdenv.mkDerivation rec {
  name = "libcddb-1.3.2";
  
  src = fetchurl {
    url = "mirror://sourceforge/libcddb/${name}.tar.bz2";
    sha256 = "0fr21a7vprdyy1bq6s99m0x420c9jm5fipsd63pqv8qyfkhhxkim";
  };

  meta = {
    description = "Libcddb is a C library to access data on a CDDB server (freedb.org)";
    license = stdenv.lib.licenses.lgpl2Plus;
    homepage = http://libcddb.sourceforge.net/;
  };
}