packages feed

hwm-0.5.0: src/HWM/Domain/Schema.hs

module HWM.Domain.Schema (TargetScope (..)) where

import HWM.Core.Pkg (Pkg)

data TargetScope
  = ScopeGlobal -- User typed: hwm build (Build everything)
  | ScopePkgs [Pkg] -- User typed: hwm build -w=libs/... (Build these)
  deriving (Eq, Show)