nixpkgs/pkgs/tools/networking/p2p/ktorrent/default.nix
Eelco Dolstra 254b6fe6d3 * Added ktorrent. To use, add your ~/.nix-profile to the KDEDIRS
environment variable and rerun kbuildsycoca.  (Otherwise ktorrent
  will work, but it won't be able to find its plugins.)

svn path=/nixpkgs/trunk/; revision=9081
2007-08-09 16:55:14 +00:00

16 lines
437 B
Nix

{ stdenv, fetchurl, pkgconfig, kdelibs, xlibs, zlib
, libpng, libjpeg, perl, gmp
}:
stdenv.mkDerivation {
name = "ktorrent-2.2.1";
src = fetchurl {
url = http://ktorrent.pwsp.net/downloads/2.2.1/ktorrent-2.2.1.tar.gz;
sha256 = "1wv7y8p21fliys55hcbxgxndz6y7ilr3cqyz99y32sm0v6l7qpyd";
};
buildInputs = [
pkgconfig kdelibs kdelibs.qt xlibs.xlibs zlib libpng libjpeg perl gmp
];
configureFlags = "--without-arts";
}