diff options
author | Mark H Weaver <mhw@netris.org> | 2018-02-03 22:46:07 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-02-03 22:46:07 -0500 |
commit | e7ca634912db59596f67dc805d7b3604c5312eeb (patch) | |
tree | 567336ae23d1c566150ac39ca7673bd00a7e461f /gnu/packages/haskell.scm | |
parent | b0881e0b55bf15d8111625607eb92968b65979ff (diff) | |
parent | 0903a51769427b0dac0ea515db4c5b678ce9a02c (diff) | |
download | guix-e7ca634912db59596f67dc805d7b3604c5312eeb.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r-- | gnu/packages/haskell.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 4f51af24c5..5db0c79073 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -42,6 +42,7 @@ #:use-module (gnu packages haskell-crypto) #:use-module (gnu packages haskell-web) #:use-module (gnu packages libffi) + #:use-module (gnu packages linux) #:use-module (gnu packages lisp) #:use-module (gnu packages lua) #:use-module (gnu packages maths) @@ -2071,6 +2072,28 @@ them on the longest match base. It is a kind of TRIE with one way branching removed. Both IPv4 and IPv6 are supported.") (license license:bsd-3))) +(define-public ghc-iwlib + (package + (name "ghc-iwlib") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/iwlib/iwlib-" + version ".tar.gz")) + (sha256 + (base32 "0khmfwql4vwj55idsxmhjhrbqzfir3g9wm5lmpvnf77mm95cfpdz")))) + (build-system haskell-build-system) + (inputs + `(("wireless-tools" ,wireless-tools))) + (home-page "https://github.com/jaor/iwlib") + (synopsis "Haskell binding to the iw wireless networking library") + (description + "IWlib is a thin Haskell binding to the iw C library. It provides +information about the current wireless network connections, and adapters on +supported systems.") + (license license:bsd-3))) + (define-public ghc-regex-base (package (name "ghc-regex-base") |