definition: |
showSourceOfPackage :: Package -> String showSourceOfPackage pkg = case source pkg of Nothing -> "No source specified" Just s -> showSource s where showSource :: PackageSource -> String showSource (Git url rev) = "Git " ++ url ++ showGitRev rev showSource (Http url) = url showSource (FileSource url) = "File " ++ url showGitRev (Just (Ref ref)) = "@" ++ ref showGitRev (Just (Tag tag)) = "@" ++ replaceVersionInTag pkg tag showGitRev (Just VersionAsTag) = "@v" ++ (showVersion $ version pkg) showGitRev Nothing = "" |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Shows the package source in human-readable format. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
showSourceOfPackage |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Package -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |