Skip to content

Commit

Permalink
doc: remove double space
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Mar 20, 2017
1 parent 315e1a2 commit 6393d43
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion doc/languages-frameworks/rust.md
Expand Up @@ -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:
Expand Down
14 changes: 7 additions & 7 deletions pkgs/development/libraries/tclgpg/default.nix
@@ -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 "
Expand All @@ -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 = ''
Expand All @@ -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/;
Expand Down

0 comments on commit 6393d43

Please sign in to comment.