blob: a5117bd3db305f4835978f7220396797a828ceab (
plain)
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
|
name: autonix-deps-kf5
version: 0.1.0.0
synopsis: Generate dependencies for KDE 5 Nix expressions
license: BSD3
license-file: LICENSE
author: Thomas Tuegel
maintainer: ttuegel@gmail.com
copyright: 2014 Thomas Tuegel
category: System
build-type: Simple
cabal-version: >=1.10
bug-reports: https://github.com/ttuegel/autonix-deps-kf5/issues
description:
@autonix-deps-kf5@ automatically detects dependencies for KDE Frameworks 5
and related software collections. The generated dependencies are used to
automatically create expressions for use by the Nix package manager.
source-repository head
type: git
location: https://github.com/ttuegel/autonix-deps-kf5.git
library
exposed-modules:
Autonix.KF5
build-depends:
autonix-deps ==0.1.*
, base >=4.7 && <5
, bytestring >=0.10
, conduit ==1.2.*
, containers >=0.5
, filepath >=1.3
, lens >=4.0
, mtl >=2.1
, transformers >=0.3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable kf5-deps
main-is: kf5-deps.hs
build-depends:
autonix-deps
, autonix-deps-kf5
, base
, containers
, lens
, mtl
default-language: Haskell2010
ghc-options: -Wall
|