about summary refs log tree commit diff
path: root/pkgs/tools/security/vidalia/default.nix
blob: 6f34d61908e1059f3b2f724033984d46cdb69c6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, cmake, qt4 }:
stdenv.mkDerivation rec {

  name = "vidalia-${version}";
  version = "0.2.21";

  src = fetchurl {
    url = "https://www.torproject.org/dist/vidalia/${name}.tar.gz";
    sha256 = "1rqvvhdqgk6jqrd15invvc4r7p4nckd3b93hhr5dzpc1fxz8w064";
  };

  buildInputs = [ cmake qt4 ];

  meta = with stdenv.lib; {
    homepage = https://www.torproject.org/projects/vidalia.html.en;
    description = "a cross-platform graphical controller for the Tor software, built using the Qt framework";
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.phreedom ];
    platforms = platforms.all;
  };
}