-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dd0444
commit a91f57e
Showing
4 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
{ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock | ||
, criterion, directory, doctest, foldl, hostname, managed | ||
, containers, directory, doctest, foldl, hostname, managed | ||
, optional-args, optparse-applicative, process, semigroups, stdenv | ||
, stm, system-fileio, system-filepath, temporary, text, time | ||
, transformers, unix, unix-compat | ||
}: | ||
mkDerivation { | ||
pname = "turtle"; | ||
version = "1.4.4"; | ||
version = "1.4.5"; | ||
src = ./.; | ||
libraryHaskellDepends = [ | ||
ansi-wl-pprint async base bytestring clock directory foldl hostname | ||
managed optional-args optparse-applicative process semigroups stm | ||
system-fileio system-filepath temporary text time transformers unix | ||
unix-compat | ||
ansi-wl-pprint async base bytestring clock containers directory | ||
foldl hostname managed optional-args optparse-applicative process | ||
semigroups stm system-fileio system-filepath temporary text time | ||
transformers unix unix-compat | ||
]; | ||
testHaskellDepends = [ base doctest system-filepath temporary ]; | ||
benchmarkHaskellDepends = [ base criterion text ]; | ||
description = "Shell programming, Haskell-style"; | ||
license = stdenv.lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: turtle | ||
Version: 1.4.4 | ||
Version: 1.4.5 | ||
Cabal-Version: >=1.10 | ||
Build-Type: Simple | ||
License: BSD3 | ||
|