File tree Expand file tree Collapse file tree 5 files changed +8
-13
lines changed
tensorflow-opgen/src/TensorFlow Expand file tree Collapse file tree 5 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"owner" : " NixOS" ,
3
3
"repo" : " nixpkgs" ,
4
- "rev" : " 7098bcac278a2d028036bb3a23508fd1c52155ac " ,
5
- "sha256" : " 04m7z7334mjma0ci3vp4js6rbz4s2jxy864s1v4dkdm7860zjc28 "
4
+ "rev" : " dbb9f8818af7cf2ea91b89f7d80a8fb1800cbfb5 " ,
5
+ "sha256" : " 1i8lsiscjzq066p02a5c7azjrvqxqkz6dipzkkyhh9rmhgs1aca3 "
6
6
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ set -euo pipefail
7
7
8
8
cd " $( dirname " $0 " ) " || exit 1
9
9
10
- branch=release-17.09
10
+ branch=release-18.04
11
11
12
12
owner=NixOS
13
13
repo=nixpkgs
Original file line number Diff line number Diff line change 11
11
pkgs = import nixpkgs { } ;
12
12
in
13
13
pkgs . haskell . lib . buildStackProject {
14
- # Either use specified GHC or use GHC 8.2.2 (which we need for LTS 11.9 )
15
- ghc = if isNull ghc then pkgs . haskell . compiler . ghc822 else ghc ;
14
+ # Either use specified GHC or use GHC 8.4.4 (which we need for LTS 12.26 )
15
+ ghc = if isNull ghc then pkgs . haskell . compiler . ghc844 else ghc ;
16
16
extraArgs = "--system-ghc" ;
17
17
name = "tf-env" ;
18
18
buildInputs = with pkgs ; [ snappy zlib protobuf libtensorflow ] ;
Original file line number Diff line number Diff line change 1
- resolver : lts-11.9
1
+ resolver : lts-12.26
2
2
3
3
packages :
4
4
- tensorflow
@@ -14,12 +14,7 @@ packages:
14
14
- tensorflow-test
15
15
16
16
extra-deps :
17
- - snappy-framing-0.1.1
18
- - snappy-0.2.0.2
19
- - proto-lens-protobuf-types-0.3.0.1
20
- - proto-lens-protoc-0.3.1.0
21
- - proto-lens-0.3.1.0
22
- - lens-labels-0.2.0.1
17
+ - snappy-framing-0.1.2
23
18
24
19
# For Mac OS X, whose linker doesn't use this path by default
25
20
# unless you run `xcode-select --install`.
Original file line number Diff line number Diff line change @@ -71,9 +71,9 @@ import Proto.Tensorflow.Core.Framework.OpDef_Fields
71
71
import Proto.Tensorflow.Core.Framework.Types (DataType (.. ))
72
72
import System.FilePath (takeBaseName )
73
73
import TensorFlow.OpGen.ParsedOp
74
+ import Data.Semigroup ((<>) )
74
75
import Text.PrettyPrint.Mainland
75
76
( Doc
76
- , (<>)
77
77
, (<+>)
78
78
, (</>)
79
79
, (<+/>)
You can’t perform that action at this time.
0 commit comments