nixpkgs/pkgs/development/libraries/libtorrent-rasterbar/default.nix
Evgeny Egorochkin 87d199330f Libtorrent-rasterbar: fix license
svn path=/nixpkgs/trunk/; revision=24687
2010-11-15 09:52:52 +00:00

23 lines
725 B
Nix

{ stdenv, fetchurl, boost, openssl, pkgconfig, zlib }:
stdenv.mkDerivation rec {
name = "libtorrent-rasterbar-${version}";
version = "0.15.4";
src = fetchurl {
url = "http://libtorrent.googlecode.com/files/${name}.tar.gz";
sha256 = "1pjdn0as4h71bhm0fbjqsh1y10fbifn2hfrkhkgdsdqhz7vdbfwy";
};
buildInputs = [ boost pkgconfig openssl zlib ];
configureFlags = [ "--with-boost=${boost}/include/boost" "--with-boost-libdir=${boost}/lib" ];
meta = with stdenv.lib; {
homepage = http://www.rasterbar.com/products/libtorrent/;
description = "A C++ BitTorrent implementation focusing on efficiency and scalability";
license = licenses.bsd3;
maintainers = [ maintainers.phreedom ];
};
}