nixpkgs/pkgs/tools/security/tor/torsocks.nix

26 lines
718 B
Nix
Raw Normal View History

2013-10-08 13:57:48 +00:00
{ stdenv, fetchgit, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "torsocks";
name = "${pname}-${version}";
2013-10-08 13:57:48 +00:00
version = "1.3";
2013-10-08 13:57:48 +00:00
src = fetchgit {
url = meta.repositories.git;
rev = "refs/tags/${version}";
sha256 = "1cqplb36fkdb81kzf48xlxclf64wnp8r56x1gjayax1h6x4aal1w";
};
2013-10-08 13:57:48 +00:00
buildInputs = [ autoreconfHook ];
preConfigure = ''
export configureFlags="$configureFlags --libdir=$out/lib"
'';
meta = {
description = "use socks-friendly applications with Tor";
homepage = http://code.google.com/p/torsocks/;
2013-10-08 13:57:48 +00:00
repositories.git = https://git.torproject.org/torsocks.git;
license = stdenv.lib.licenses.gpl2;
2014-11-05 09:34:20 +00:00
maintainers = [ stdenv.lib.maintainers.phreedom ];
};
}