mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
libtorrent: updated to version 0.12.9
svn path=/nixpkgs/trunk/; revision=27823
This commit is contained in:
parent
356928aad9
commit
21691b47d7
@ -1,19 +1,23 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, openssl, libsigcxx }:
|
{ stdenv, fetchurl, pkgconfig, openssl, libsigcxx }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
pname = "libtorrent";
|
version = "0.12.9";
|
||||||
version = "0.12.6";
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
name = "${pname}-${version}";
|
name = "libtorrent-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
|
url = "http://libtorrent.rakshasa.no/downloads/libtorrent-${version}.tar.gz";
|
||||||
sha256 = "0abisz3jgfv4zmyzbsknzvz9hwakxxpdgfl33qk0aslnchqz60kv";
|
sha256 = "25dc9e8dd45d070f447e599bef08ef0ca421bac6e7f55e608dcd19360594af64";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig openssl libsigcxx ];
|
buildInputs = [ pkgconfig openssl libsigcxx ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
homepage = "http://libtorrent.rakshasa.no/";
|
||||||
description = "A BitTorrent library written in C++ for *nix, with a focus on high performance and good code";
|
description = "A BitTorrent library written in C++ for *nix, with a focus on high performance and good code";
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user