module Network.IPFS.BinPath.Types (BinPath (..)) where import System.Envy import Network.IPFS.Prelude import Network.IPFS.Internal.Orphanage.Natural () -- | Path to the IPFS binary newtype BinPath = BinPath { getBinPath :: FilePath } deriving ( Show , Generic ) deriving newtype ( IsString ) instance FromEnv BinPath where fromEnv _ = BinPath <$> env "IPFS_PATH" instance FromJSON BinPath where parseJSON = withText "IPFS.BinPath" \txt -> BinPath <$> parseJSON (String txt)