about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/dclib/default.nix
blob: 05ea7db2caccddad2a78a68d03e0115ea90f0e9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{lib, stdenv, fetchurl, libxml2, openssl, bzip2}:

stdenv.mkDerivation rec {
  pname = "dclib";
  version = "0.3.7";

  src = fetchurl {
    url = "ftp://ftp.debian.nl/pub/freebsd/ports/distfiles/dclib-${version}.tar.bz2";
    sha256 = "02jdzm5hqzs1dv2rd596vgpcjaapm55pqqapz5m94l30v4q72rfc";
  };

  buildInputs = [libxml2 openssl bzip2];

  meta = with lib; {
    description = "Peer-to-Peer file sharing client";
    homepage = "http://dcgui.berlios.de";
    platforms = platforms.linux;
    license = [ licenses.openssl licenses.gpl2 ];
  };
}