Vidalia: packaged
svn path=/nixpkgs/trunk/; revision=32694
This commit is contained in:
parent
0def4140f6
commit
bf667c9389
21
pkgs/tools/security/vidalia/default.nix
Normal file
21
pkgs/tools/security/vidalia/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, cmake, qt4 }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
name = "vidalia-${version}";
|
||||||
|
version = "0.2.15";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.torproject.org/dist/vidalia/${name}.tar.gz";
|
||||||
|
sha256 = "02c8q6l93w1f9jwnl13jvpzk8vms3lrqz41bs36ny7cfzgczv625";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -1460,6 +1460,8 @@ let
|
|||||||
|
|
||||||
vacuum = callPackage ../applications/networking/instant-messengers/vacuum {};
|
vacuum = callPackage ../applications/networking/instant-messengers/vacuum {};
|
||||||
|
|
||||||
|
vidalia = callPackage ../tools/security/vidalia { };
|
||||||
|
|
||||||
vbetool = builderDefsPackage ../tools/system/vbetool {
|
vbetool = builderDefsPackage ../tools/system/vbetool {
|
||||||
inherit pciutils libx86 zlib;
|
inherit pciutils libx86 zlib;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user