File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
hnix-store-remote/src/System/Nix/Store/Remote Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 55 exported. Use respective ` mkStorePath.. ` functions. [ #230 ] ( https://github.com/haskell-nix/hnix-store/pull/230 )
66 * ` StorePathSet ` type alias is no more, use ` HashSet StorePath ` [ #230 ] ( https://github.com/haskell-nix/hnix-store/pull/230 )
77 * ` makeStorePath ` and ` parsePath ` now returns ` Either InvalidPathError StorePath ` [ #231 ] ( https://github.com/haskell-nix/hnix-store/pull/231 )
8-
8+ * ` BuildResult ` s ` timesBuild ` field changes type from ` Integer ` to ` Int ` [ # 231 ] ( https://github.com/haskell-nix/hnix-store/pull/231 )
99
1010* Additions:
1111 * ` InvalidPathError ` replacing previous stringy error [ #231 ] ( https://github.com/haskell-nix/hnix-store/pull/231 )
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ data BuildResult = BuildResult
4646 , -- | possible build error message
4747 errorMessage :: ! (Maybe Text )
4848 , -- | How many times this build was performed
49- timesBuilt :: ! Integer
49+ timesBuilt :: ! Int
5050 , -- | If timesBuilt > 1, whether some builds did not produce the same result
5151 isNonDeterministic :: ! Bool
5252 , -- Start time of this build
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ instance Serialize BuildResult where
2929 <$> get
3030 -- TODO(srk): fishy
3131 <*> (Just <$> get)
32- <*> ( fromIntegral <$> getInt)
32+ <*> getInt
3333 <*> getBool
3434 <*> getTime
3535 <*> getTime
You can’t perform that action at this time.
0 commit comments