mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18509c88b3
svn path=/nixpkgs/trunk/; revision=28193
24 lines
605 B
Nix
24 lines
605 B
Nix
{ stdenv, fetchurl, kdelibs, cmake, gmp, qca2, boost, gettext, qt4, automoc4
|
|
, phonon, libgcrypt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = pname + "-" + version;
|
|
pname = "libktorrent";
|
|
version = "1.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://ktorrent.org/downloads/4.1.1/${name}.tar.bz2";
|
|
sha256 = "06d93xpshxawz49hqh6pvypir4ygm1f781hs7yim5k6b7shivfs1";
|
|
};
|
|
|
|
buildInputs =
|
|
[ cmake kdelibs qt4 automoc4 phonon gmp qca2 boost libgcrypt gettext ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A BiTtorrent library used by KTorrent";
|
|
homepage = http://ktorrent.org;
|
|
};
|
|
}
|