about summary refs log tree commit diff
path: root/pkgs/development/libraries/libcddb/default.nix
blob: 9a284d8988d23a23fc2226e3a1dd449dc2b6b951 (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 = "C library to access data on a CDDB server (freedb.org)";
    license = stdenv.lib.licenses.lgpl2Plus;
    homepage = http://libcddb.sourceforge.net/;
  };
}