simple-nix-0.1.0.2: src/Nix/LicenseType.hs
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE StandaloneDeriving #-}
module Nix.LicenseType where
import Nix.Common
data LicenseType
= GPL
| GPLv2
| GPLv2Plus
| GPLv3
| GPLv3Plus
| Free
| FreeCopyleft
| UnfreeRedistributable
| Unfree
| UnfreeRedistributableFirmware
deriving (Show, Eq)