git-annex: added openssh to build inputs so that the configure phase enables support for SSH connection caching
svn path=/nixpkgs/trunk/; revision=34386
This commit is contained in:
parent
87d25896c1
commit
330ea0887f
@ -43,7 +43,7 @@ rec {
|
|||||||
});
|
});
|
||||||
|
|
||||||
gitAnnex = lib.makeOverridable (import ./git-annex) {
|
gitAnnex = lib.makeOverridable (import ./git-annex) {
|
||||||
inherit stdenv fetchurl libuuid rsync findutils curl perl git ikiwiki which coreutils;
|
inherit stdenv fetchurl libuuid rsync findutils curl perl git ikiwiki which coreutils openssh;
|
||||||
inherit (haskellPackages_ghc741) ghc MissingH utf8String pcreLight SHA dataenc
|
inherit (haskellPackages_ghc741) ghc MissingH utf8String pcreLight SHA dataenc
|
||||||
HTTP testpack hS3 mtl network hslogger hxt json liftedBase monadControl IfElse
|
HTTP testpack hS3 mtl network hslogger hxt json liftedBase monadControl IfElse
|
||||||
QuickCheck2 bloomfilter editDistance;
|
QuickCheck2 bloomfilter editDistance;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, curl, dataenc, findutils, ghc, git, hS3, hslogger, HTTP, hxt
|
{ stdenv, fetchurl, curl, dataenc, findutils, ghc, git, hS3, hslogger, HTTP, hxt
|
||||||
, ikiwiki, json, libuuid, MissingH, monadControl, mtl, network, pcreLight, perl
|
, ikiwiki, json, libuuid, MissingH, monadControl, mtl, network, pcreLight, perl
|
||||||
, QuickCheck2, rsync, SHA, testpack, utf8String, which, liftedBase, coreutils
|
, QuickCheck2, rsync, SHA, testpack, utf8String, which, liftedBase, coreutils
|
||||||
, IfElse, bloomfilter, editDistance
|
, IfElse, bloomfilter, editDistance, openssh
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
|||||||
curl dataenc findutils ghc git hS3 hslogger HTTP hxt ikiwiki json
|
curl dataenc findutils ghc git hS3 hslogger HTTP hxt ikiwiki json
|
||||||
libuuid MissingH monadControl mtl network pcreLight perl QuickCheck2
|
libuuid MissingH monadControl mtl network pcreLight perl QuickCheck2
|
||||||
rsync SHA testpack utf8String which liftedBase IfElse bloomfilter
|
rsync SHA testpack utf8String which liftedBase IfElse bloomfilter
|
||||||
editDistance
|
editDistance openssh
|
||||||
];
|
];
|
||||||
|
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
|
Loading…
Reference in New Issue
Block a user