git-annex: added missing SHA dependency

svn path=/nixpkgs/trunk/; revision=27131
This commit is contained in:
Peter Simons 2011-05-04 09:45:22 +00:00
parent fb10d3399d
commit 59dae8edf4
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ rec {
gitAnnex = lib.makeOverridable (import ./git-annex) { gitAnnex = lib.makeOverridable (import ./git-annex) {
inherit stdenv fetchurl libuuid rsync findutils curl perl; inherit stdenv fetchurl libuuid rsync findutils curl perl;
inherit (haskellPackages) ghc MissingH utf8String QuickCheck2 pcreLight; inherit (haskellPackages) ghc MissingH utf8String QuickCheck2 pcreLight SHA;
}; };
qgit = import ./qgit { qgit = import ./qgit {

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, ghc, libuuid, rsync, findutils, curl, perl, MissingH, utf8String, QuickCheck2, pcreLight }: { stdenv, fetchurl, ghc, libuuid, rsync, findutils, curl, perl, MissingH, utf8String, QuickCheck2, pcreLight, SHA }:
let let
version = "0.20110427"; version = "0.20110427";
@ -11,7 +11,7 @@ stdenv.mkDerivation {
sha256 = "1vbmkvf9hlnfcaqsyi1ay2rr835j49bxqyfdi3v3373pdfd6195z"; sha256 = "1vbmkvf9hlnfcaqsyi1ay2rr835j49bxqyfdi3v3373pdfd6195z";
}; };
buildInputs = [ghc libuuid rsync findutils curl perl MissingH utf8String QuickCheck2 pcreLight]; buildInputs = [ghc libuuid rsync findutils curl perl MissingH utf8String QuickCheck2 pcreLight SHA];
preConfigure = '' preConfigure = ''
makeFlagsArray=( PREFIX=$out ) makeFlagsArray=( PREFIX=$out )