doc: remove double space

This commit is contained in:
Robin Gloster 2017-03-20 20:47:13 +01:00
parent 315e1a23c0
commit 6393d43380
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882
2 changed files with 8 additions and 8 deletions

View File

@ -71,7 +71,7 @@ and create a symbolic link to the file
in the `~/.config/nixpkgs/overlays` directory.
$ git clone https://github.com/mozilla/nixpkgs-mozilla.git
$ mkdir -p ~/.config/nixpkgs/overlays
$ mkdir -p ~/.config/nixpkgs/overlays
$ ln -s $(pwd)/nixpkgs-mozilla/rust-overlay.nix ~/.config/nixpkgs/overlays/rust-overlay.nix
The latest version can be installed with the following command:

View File

@ -1,13 +1,13 @@
{ stdenv, fetchsvn, autoconf, automake, tcl, tcllib, gnupg }:
{ stdenv, fetchfossil, autoreconfHook, tcl, tcllib, gnupg }:
stdenv.mkDerivation rec {
name = "tclgpg-${version}";
version = "1.0pre";
src = fetchsvn {
url = "http://tclgpg.googlecode.com/svn/trunk";
rev = 74;
sha256 = "5207b1d246fea6d4527e8c044579dae45a2e31eeaa5633f4f97c7e7b54ec27c5";
src = fetchfossil {
url = "https://chiselapp.com/user/sgolovan/repository/tclgpg";
rev = "c5384e400f4a6efa";
sha256 = "5207b1d246fea6d4527e8c044579dae45a2e31eeaa5633f4fa7c7e7b54ec27c5";
};
configureFlags = "--with-tcl=" + tcl + "/lib "
@ -16,7 +16,6 @@ stdenv.mkDerivation rec {
preConfigure = ''
configureFlags="--exec_prefix=$prefix $configureFlags"
sed -i -e 's|dtplite|TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}" &|' Makefile.in
autoreconf -vfi
'';
prePatch = ''
@ -27,7 +26,8 @@ stdenv.mkDerivation rec {
libPrefix = "gpg1.0";
};
buildInputs = [ autoconf automake tcl tcllib ];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ tcl tcllib ];
meta = {
homepage = http://code.google.com/p/tclgpg/;