packages feed

hercules-ci-agent-0.10.1: src/Hercules/Agent/WorkerProtocol/Command/Build.hs

{-# LANGUAGE DeriveAnyClass #-}

module Hercules.Agent.WorkerProtocol.Command.Build where

import Data.Binary
import Protolude

data Build = Build
  { drvPath :: Text,
    inputDerivationOutputPaths :: [ByteString],
    materializeDerivation :: Bool,
    materializePlatforms :: [ByteString]
  }
  deriving (Generic, Binary, Show, Eq)