This file is indexed.

/var/lib/ghc/package.conf.d/chell-0.3.conf is in libghc-chell-dev 0.3-3build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: chell
version: 0.3
id: chell-0.3-f7e509dedec1266f8a7b1ff61da2c53d

license: MIT
copyright:
maintainer: John Millikin <jmillikin@gmail.com>
stability:
homepage: https://john-millikin.com/software/chell/
package-url:
synopsis: A simple and intuitive library for automated testing.
description: Chell is a simple and intuitive library for automated testing. It natively
             supports assertion-based testing, and can use companion libraries
             such as @chell-quickcheck@ to support more complex testing strategies.
             .
             An example test suite, which verifies the behavior of artithmetic operators.
             .
             @
             &#x7b;-\# LANGUAGE TemplateHaskell \#-&#x7d;
             .
             import Test.Chell
             .
             tests_Math :: Suite
             tests_Math = suite \"math\"
             &#x20;   test_Addition
             &#x20;   test_Subtraction
             .
             test_Addition :: Test
             test_Addition = assertions \"addition\" $ do
             &#x20;   $expect (equal (2 + 1) 3)
             &#x20;   $expect (equal (1 + 2) 3)
             .
             test_Subtraction :: Test
             test_Subtraction = assertions \"subtraction\" $ do
             &#x20;   $expect (equal (2 - 1) 1)
             &#x20;   $expect (equal (1 - 2) (-1))
             .
             main :: IO ()
             main = defaultMain [tests_Math]
             @
             .
             @
             $ ghc --make chell-example.hs
             $ ./chell-example
             PASS: 2 tests run, 2 tests passed
             @
category: Testing
author: John Millikin <jmillikin@gmail.com>
exposed: True
exposed-modules: Test.Chell
hidden-modules: Test.Chell.Main Test.Chell.Output Test.Chell.Types
trusted: False
import-dirs: /usr/lib/haskell-packages/ghc/lib/chell-0.3/ghc-7.6.3
library-dirs: /usr/lib/haskell-packages/ghc/lib/chell-0.3/ghc-7.6.3
hs-libraries: HSchell-0.3
extra-libraries:
extra-ghci-libraries:
include-dirs:
includes:
depends: base-4.6.0.1-8aa5d403c45ea59dcd2c39f123e27d57
         bytestring-0.10.0.2-4f93248f75667c2c3321a7a6761b576f
         options-0.1.1-734ce5e7045224516e9a480e2d08cf68
         patience-0.1.1-bedc8d66658fddc81036c17e165bc9f4
         random-1.0.1.1-43fdc5da991685d8a0ec8cb553880cf8
         system-filepath-0.4.7-c7b27b28fefe76644dbb98b4689e1735
         template-haskell-2.8.0.0-a3012803fde1dc362e555b35a1a78e6d
         text-0.11.3.1-e38859e86485c167fa7c9441789e7607
         transformers-0.3.0.0-ff2bb6ac67241ebb987351a3db564af0
hugs-options:
cc-options:
ld-options:
framework-dirs:
frameworks:
haddock-interfaces: /usr/lib/ghc-doc/haddock/chell-0.3/chell.haddock
haddock-html: /usr/share/doc/libghc-chell-doc/html/