packages feed

hercules-ci-api-agent-0.3.0.0: src/Hercules/API/Agent/Evaluate/EvaluateEvent/BuildRequired.hs

{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE DeriveAnyClass #-}

module Hercules.API.Agent.Evaluate.EvaluateEvent.BuildRequired where

import Hercules.API.Prelude

data BuildRequired = BuildRequired
  { index :: Int,
    derivationPath :: Text,
    outputName :: Text
  }
  deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON)