nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix
Eelco Dolstra fcad0b0a5a * Cleaned up a lot of description fields that contained newlines.
Some of these should be longDescriptions, but most others just
  shouldn't contain newlines.  E.g. write

    description = "Bla";

  and not

    description = ''
      Bla
    '';

  This pollutes "nix-env -qa --description" output.

svn path=/nixpkgs/trunk/; revision=14310
2009-03-03 13:27:40 +00:00

19 lines
486 B
Nix

args: with args;
stdenv.mkDerivation ( rec {
pname = "libtorrent";
version = "0.11.9";
name = "${pname}-${version}";
src = fetchurl {
url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
sha256 = "71f09218a7784b21ab53cdfcd8fa122da60352e5ca117fda7cd8d2763f908a08";
};
buildInputs = [ pkgconfig openssl libsigcxx ];
meta = {
description = "A BitTorrent library written in C++ for *nix, with a focus on high performance and good code";
};
})