mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-12-14 19:47:56 +03:00
Reorder references in makeTextPath
This commit is contained in:
parent
5978255e2e
commit
5fddf3c66b
@ -8,6 +8,7 @@ module System.Nix.ReadonlyStore where
|
||||
|
||||
import Data.ByteString ( ByteString )
|
||||
import qualified Data.ByteString as BS
|
||||
import Data.List ( sort )
|
||||
import qualified Data.Text as T
|
||||
import qualified Data.HashSet as HS
|
||||
import Data.Text.Encoding
|
||||
@ -41,7 +42,7 @@ makeTextPath
|
||||
makeTextPath fp nm h refs = makeStorePath fp ty h nm
|
||||
where
|
||||
ty =
|
||||
BS.intercalate ":" ("text" : fmap storePathToRawFilePath (HS.toList refs))
|
||||
BS.intercalate ":" ("text" : sort (fmap storePathToRawFilePath (HS.toList refs)))
|
||||
|
||||
makeFixedOutputPath
|
||||
:: forall hashAlgo
|
||||
|
Loading…
Reference in New Issue
Block a user