nix-derivation 1.1.0 → 1.1.1
raw patch · 3 files changed
+5/−1 lines, 3 filesdep ~QuickCheckdep ~attoparsecPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, attoparsec
API changes (from Hackage documentation)
+ Nix.Derivation: buildDerivationWith :: (fp -> Builder) -> (txt -> Builder) -> Derivation fp txt -> Builder
+ Nix.Derivation: parseDerivationWith :: (Ord fp, Ord txt) => Parser fp -> Parser txt -> Parser (Derivation fp txt)
+ Nix.Derivation: textParser :: Parser Text
Files
- nix-derivation.cabal +1/−1
- src/Nix/Derivation.hs +3/−0
- src/Nix/Derivation/Parser.hs +1/−0
nix-derivation.cabal view
@@ -1,5 +1,5 @@ Name: nix-derivation-Version: 1.1.0+Version: 1.1.1 Cabal-Version: >=1.10 Build-Type: Simple Tested-With: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.8.3
src/Nix/Derivation.hs view
@@ -83,9 +83,12 @@ -- * Parse derivations , parseDerivation+ , parseDerivationWith+ , textParser -- * Render derivations , buildDerivation+ , buildDerivationWith ) where import Nix.Derivation.Builder
src/Nix/Derivation/Parser.hs view
@@ -9,6 +9,7 @@ ( -- * Parser parseDerivation , parseDerivationWith+ , textParser ) where import Data.Attoparsec.Text.Lazy (Parser)