2021-01-21 09:00:13 -08:00
|
|
|
{lib, stdenv, fetchurl, libxml2, openssl, bzip2}:
|
2005-08-30 00:39:38 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "dclib-0.3.7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "ftp://ftp.debian.nl/pub/freebsd/ports/distfiles/dclib-0.3.7.tar.bz2";
|
2014-10-12 07:13:21 -07:00
|
|
|
sha256 = "02jdzm5hqzs1dv2rd596vgpcjaapm55pqqapz5m94l30v4q72rfc";
|
2005-08-30 00:39:38 -07:00
|
|
|
};
|
|
|
|
|
2006-08-11 15:26:55 -07:00
|
|
|
buildInputs = [libxml2 openssl bzip2];
|
2016-08-02 09:06:29 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2020-06-26 16:27:15 -07:00
|
|
|
description = "Peer-to-Peer file sharing client";
|
|
|
|
homepage = "http://dcgui.berlios.de";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = [ licenses.openssl licenses.gpl2 ];
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2005-08-30 00:39:38 -07:00
|
|
|
}
|