packages feed

cli-nix 0.1.0.0 → 0.1.0.1

raw patch · 3 files changed

+41/−26 lines, 3 filesdep ~basedep ~lensnew-uploaderPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base, lens

API changes (from Hackage documentation)

- Bindings.Cli.Nix: nixCmdConfig_args :: HasNixCommonConfig c_aggS => Lens' c_aggS [Arg]
+ Bindings.Cli.Nix: nixCmdConfig_args :: HasNixCommonConfig c_ah8F => Lens' c_ah8F [Arg]
- Bindings.Cli.Nix: nixCmdConfig_builders :: HasNixCommonConfig c_aggS => Lens' c_aggS [String]
+ Bindings.Cli.Nix: nixCmdConfig_builders :: HasNixCommonConfig c_ah8F => Lens' c_ah8F [String]
- Bindings.Cli.Nix: nixCmdConfig_target :: HasNixCommonConfig c_aggS => Lens' c_aggS Target
+ Bindings.Cli.Nix: nixCmdConfig_target :: HasNixCommonConfig c_ah8F => Lens' c_ah8F Target
- Bindings.Cli.Nix: target_attr :: HasTarget c_aehR => Lens' c_aehR (Maybe String)
+ Bindings.Cli.Nix: target_attr :: HasTarget c_af4W => Lens' c_af4W (Maybe String)
- Bindings.Cli.Nix: target_expr :: HasTarget c_aehR => Lens' c_aehR (Maybe String)
+ Bindings.Cli.Nix: target_expr :: HasTarget c_af4W => Lens' c_af4W (Maybe String)
- Bindings.Cli.Nix: target_path :: HasTarget c_aehR => Lens' c_aehR (Maybe FilePath)
+ Bindings.Cli.Nix: target_path :: HasTarget c_af4W => Lens' c_af4W (Maybe FilePath)

Files

CHANGELOG.md view
@@ -1,4 +1,8 @@ # Revision history for cli-nix +## 0.1.0.1++* Support GHC 8.8.4. Modify version bounds+ ## 0.1.0.0 * Initial release
+ README.md view
@@ -0,0 +1,5 @@+cli-nix+=======+[![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/cli-nix.svg)](https://hackage.haskell.org/package/cli-nix) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/cli-nix/badge)](https://matrix.hackage.haskell.org/#/package/cli-nix) [![Github CI](https://github.com/obsidiansystems/cli-nix/workflows/github-action/badge.svg)](https://github.com/obsidiansystems/cli-nix/actions) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/obsidiansystems/cli-nix/blob/master/LICENSE)++Nix command-line bindings for Haskell CLI applications.
cli-nix.cabal view
@@ -1,28 +1,34 @@-cabal-version: >=1.10-name: cli-nix-version: 0.1.0.0-license: BSD3-license-file: LICENSE-copyright: Obsidian Systems LLC 2020-maintainer: maintainer@obsidian.systems-author: Obsidian Systems LLC-synopsis: Bindings to the nix command-line interface-category: Nix, Bindings-build-type: Simple-extra-source-files:-    CHANGELOG.md+cabal-version:      >=1.10+name:               cli-nix+version:            0.1.0.1+license:            BSD3+license-file:       LICENSE+copyright:          Obsidian Systems LLC 2020+maintainer:         maintainer@obsidian.systems+author:             Obsidian Systems LLC+synopsis:           Bindings to the nix command-line interface+category:           Nix, Bindings+build-type:         Simple+extra-source-files: CHANGELOG.md+                    README.md +tested-with: GHC ==8.6.5 || ==8.8.4+ library-    exposed-modules:-        Bindings.Cli.Nix-    hs-source-dirs: src-    default-language: Haskell2010-    build-depends:-        base ==4.12.*,-        cli-extras >=0.1.0.0 && <0.2,-        lens >=4.17.1 && <4.18,-        data-default >=0.7.1.1 && <0.8,-        text >=1.2.3.1 && <1.3,-        exceptions >=0.10.3 && <0.11,-        mtl >=2.2.2 && <2.3,-        logging-effect >=1.3.4 && <1.4+  exposed-modules:  Bindings.Cli.Nix+  hs-source-dirs:   src+  default-language: Haskell2010+  build-depends:+      base            >=4.12    && <4.15+    , cli-extras      >=0.1.0.0 && <0.2+    , data-default    >=0.7.1.1 && <0.8+    , exceptions      >=0.10.3  && <0.11+    , lens            >=4.17.1  && <4.20+    , logging-effect  >=1.3.4   && <1.4+    , mtl             >=2.2.2   && <2.3+    , text            >=1.2.3.1 && <1.3+  ghc-options: -Wall++source-repository head+  type:     git+  location: https://github.com/obsidiansystems/cli-nix