depot/third_party/nixpkgs/pkgs/development/libraries/dclib/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

19 lines
522 B
Nix

{lib, stdenv, fetchurl, libxml2, openssl, bzip2}:
stdenv.mkDerivation {
name = "dclib-0.3.7";
src = fetchurl {
url = "ftp://ftp.debian.nl/pub/freebsd/ports/distfiles/dclib-0.3.7.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 ];
};
}