Skip to content

Commit

Permalink
haskellPackages.tensorflow-mnist: fix missing dependency on tensorflo…
Browse files Browse the repository at this point in the history
…w-mnist-input-data
  • Loading branch information
basvandijk committed Sep 6, 2018
1 parent 641025d commit a5f08c1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/development/haskell-modules/configuration-tensorflow.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,11 @@ in
tensorflow-logging = super.tensorflow-logging.override {
inherit proto-lens;
};
tensorflow-mnist = super.tensorflow-mnist.override {
tensorflow-mnist = overrideCabal (super.tensorflow-mnist.override {
inherit proto-lens;
};
# https://github.com/tensorflow/haskell/issues/215
tensorflow-mnist-input-data = self.tensorflow-mnist-input-data;
}) (_drv: { broken = false; });
tensorflow-mnist-input-data = setSourceRoot "tensorflow-mnist-input-data" (super.callPackage (
{ mkDerivation, base, bytestring, Cabal, cryptonite, directory
, filepath, HTTP, network-uri, stdenv
Expand Down

0 comments on commit a5f08c1

Please sign in to comment.