hackport-0.8.5.1: src/Portage/Slots.hs
{-|
Module : Portage.Tables
License : GPL-3+
Maintainer : haskell@gentoo.org
Tables of Portage-specific conversions.
-}
module Portage.Slots
( set_build_slot
) where
import Portage.Dependency.Builder
import Portage.Dependency.Types
-- | Set the @SLOT@ for a given 'Dependency'.
set_build_slot :: Dependency -> Dependency
set_build_slot =
overAtom $ \(Atom pn dr (DAttr _ u)) ->
Atom pn dr (DAttr AnyBuildTimeSlot u)