at 23.11-beta 20 lines 547 B view raw
1{lib, stdenv, fetchurl, libxml2, openssl, bzip2}: 2 3stdenv.mkDerivation rec { 4 pname = "dclib"; 5 version = "0.3.7"; 6 7 src = fetchurl { 8 url = "ftp://ftp.debian.nl/pub/freebsd/ports/distfiles/dclib-${version}.tar.bz2"; 9 sha256 = "02jdzm5hqzs1dv2rd596vgpcjaapm55pqqapz5m94l30v4q72rfc"; 10 }; 11 12 buildInputs = [libxml2 openssl bzip2]; 13 14 meta = with lib; { 15 description = "Peer-to-Peer file sharing client"; 16 homepage = "http://dcgui.berlios.de"; 17 platforms = platforms.linux; 18 license = [ licenses.openssl licenses.gpl2 ]; 19 }; 20}