bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
25 lines
739 B
Nix
25 lines
739 B
Nix
{ stdenv, fetchurl, cmake, qt4, doxygen }:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vidalia-${version}";
|
|
version = "0.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.torproject.org/dist/vidalia/${name}.tar.gz";
|
|
sha256 = "1mw3wnlh18rj20qjv7jxjk3a8mf75p5wzv358qfs3sm3lqgd68qm";
|
|
};
|
|
|
|
buildInputs = [ cmake qt4 doxygen ];
|
|
|
|
patches = [ ./gcc-4.7.patch ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.torproject.org/projects/vidalia.html.en;
|
|
repositories.git = https://git.torproject.org/vidalia;
|
|
description = "A cross-platform graphical controller for the Tor software, built using the Qt framework";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.phreedom ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|