mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
doc: remove double space
This commit is contained in:
parent
315e1a23c0
commit
6393d43380
|
@ -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:
|
||||
|
|
|
@ -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/;
|
||||
|
|
Loading…
Reference in a new issue