Peter Simons
11096b2cfe
hackage2nix: disable failing Hydra builds
...
@gebner: hledger-diff no longer compiles
2018-05-06 19:31:03 +02:00
Peter Simons
f2b581394c
Merge pull request #39903 from endgame/hold-blank-canvas
...
haskellPackages.blank-canvas: 0.6.3 -> 0.6.2
2018-05-04 13:26:41 +02:00
Peter Simons
6ff00acd67
haskell-wl-pprint-text: drop obsolete override for ghc-8.4.x
2018-05-03 14:50:45 +02:00
Peter Simons
988ad012f6
haskell-hashtables: drop obsolete override for ghc-8.4.x
2018-05-03 14:50:44 +02:00
Peter Simons
cdca787899
haskell-dhall: jailbreak version 1.13.0 to fix the build with ansi-terminal 0.8.x
...
Ping: @Gabriel439
2018-05-03 14:50:44 +02:00
Peter Simons
4519076421
haskell-dhall: update override for ghc-8.4.x to use the latest version
2018-05-03 14:50:44 +02:00
Peter Simons
1d79794c79
haskell-gtk2hs-buildtools: drop obsolete override for ghc-8.4.x
2018-05-03 14:50:44 +02:00
Peter Simons
0fe2007963
haskell-simple-reflect: drop obsolete override for ghc-8.4.x
2018-05-03 14:50:44 +02:00
Peter Simons
756e386e41
haskell-gi-base: drop obsolete override for ghc-8.4.x
2018-05-03 14:50:43 +02:00
Peter Simons
ce6402dc79
haskell-gi: drop obsolete override for ghc-8.4.x
2018-05-03 14:50:43 +02:00
Peter Simons
92256a9453
haskell-tar: drop obsolete override for ghc-8.4.x
2018-05-03 14:50:43 +02:00
Peter Simons
b33d1d6481
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.9.2-9-g07ca643 from Hackage revision
bb0c3bef04
.
2018-05-03 14:50:30 +02:00
Jack Kelly
4680fe67db
haskellPackages.blank-canvas: 0.6.3 -> 0.6.2
...
blank-canvas-0.6.3 depends on base-compat-batteries-0.10, which
depends on base-compat-0.10. This conflicts with the rest of the LTS
set, which uses base-compat-0.9. No base-compat-batteries-0.9 exists.
blank-canvas-0.6.2 only depends on base-compat >= 0.8 && < 0.10.
2018-05-03 12:12:48 +10:00
Peter Simons
59490ae472
haskell-brick: update override for ghc 8.4.x
2018-05-01 09:30:23 +02:00
Peter Simons
e9c955fb84
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.9.2-9-g07ca643 from Hackage revision
4fb888414b
.
2018-05-01 09:29:45 +02:00
Peter Simons
79897e15ab
LTS Haskell 11.7
2018-05-01 09:29:43 +02:00
Peter Simons
9f144e8578
haskell-hspec-smallcheck: use latest version for ghc-8.4.x to fix the build
2018-04-28 15:38:00 +02:00
Peter Simons
8564e93d2d
haskell-c2hs: drop hacky override and try the current version again
2018-04-28 15:38:00 +02:00
Peter Simons
f0549be090
haskell-stack: update overrides for the new 1.7.1 version
2018-04-28 15:37:59 +02:00
Peter Simons
c60c6a2443
git-annex: update sha256 hash for new 6.2018042 version
2018-04-28 15:37:59 +02:00
Peter Simons
99dc2d6f0f
haskell-hpack: use latest version for ghc-8.4.x to fix the build
2018-04-28 15:37:59 +02:00
Peter Simons
e39a75cd35
haskell-pandoc: update override for ghc-8.4.x
2018-04-28 15:37:59 +02:00
Peter Simons
f8d0c9e3c3
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.9.2-9-g07ca643 from Hackage revision
bb8ed19628
.
2018-04-28 15:37:55 +02:00
Peter Simons
ab5dcdddd1
Merge pull request #39456 from endgame/base-compat-batteries-deps
...
haskellPackages.base-compat-batteries: fix bad dependency
2018-04-27 12:41:18 +02:00
Jack Kelly
c8b9ac9be6
haskellPackages.base-compat-batteries: fix bad dependency
2018-04-27 20:05:38 +10:00
John Wiegley
a22b3e91b6
configuration-ghc-8.4.x.nix: Remove reference to non-existent bv_0_5
2018-04-26 17:20:51 -07:00
Nikolay Amiantov
bea11a34fb
haskellPackages.encoding: fix build with Cabal 2.0
2018-04-26 17:01:14 +03:00
John Ericson
ba52ae5048
treewide: isArm -> isAarch32
...
Following legacy packing conventions, `isArm` was defined just for
32-bit ARM instruction set. This is confusing to non packagers though,
because Aarch64 is an ARM instruction set.
The official ARM overview for ARMv8[1] is surprisingly not confusing,
given the overall state of affairs for ARM naming conventions, and
offers us a solution. It divides the nomenclature into three levels:
```
ISA: ARMv8 {-A, -R, -M}
/ \
Mode: Aarch32 Aarch64
| / \
Encoding: A64 A32 T32
```
At the top is the overall v8 instruction set archicture. Second are the
two modes, defined by bitwidth but differing in other semantics too, and
buttom are the encodings, (hopefully?) isomorphic if they encode the
same mode.
The 32 bit encodings are mostly backwards compatible with previous
non-Thumb and Thumb encodings, and if so we can pun the mode names to
instead mean "sets of compatable or isomorphic encodings", and then
voilà we have nice names for 32-bit and 64-bit arm instruction sets
which do not use the word ARM so as to not confused either laymen or
experienced ARM packages.
[1]: https://developer.arm.com/products/architecture/a-profile
2018-04-25 15:28:55 -04:00
Peter Simons
1d0a71879d
haskell-brick: update override for ghc 8.4.x
2018-04-25 11:43:57 +02:00
Peter Simons
33e046271a
haskell-vector-sized: update override
2018-04-25 11:43:56 +02:00
Peter Simons
7724ead286
haskell-{hlint,hoogle}: drop obsolete overrides
2018-04-25 11:43:56 +02:00
Peter Simons
a49dca6821
haskell-monad-logger: drop obsolete override
2018-04-25 11:43:56 +02:00
Peter Simons
46cce6ef99
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.9.2-6-g7882850 from Hackage revision
5dcdcbfee8
.
2018-04-25 11:43:49 +02:00
Peter Simons
c60a874ef5
LTS Haskell 11.6
2018-04-25 11:28:16 +02:00
Peter Simons
f22ce37e1f
Merge pull request #39265 from expipiplus1/vector-sized-1
...
Haskell Packages: Use correct version of indexed-list-literals for vector-sized-1.0.0.0
2018-04-21 08:18:25 +02:00
Peter Simons
d1107d5dce
Merge pull request #39248 from PierreR/patch-1
...
Enable language-puppet again
2018-04-21 08:11:46 +02:00
Joe Hermaszewski
5778c4150a
Haskell Packages: Use correct version of indexed-list-literals for vector-sized-1.0.0.0
2018-04-21 09:47:52 +08:00
Pi3r
a36538f33c
Update configuration-hackage2nix.yaml
2018-04-20 22:41:48 +02:00
Peter Simons
2a488c9758
Merge pull request #39269 from chessai/fix-ghc84x-deriving-compat-unneeded
...
deriving compat was unneeded and prohibitive
2018-04-20 20:10:51 +02:00
chessai
6c6d3e8749
haskell.packages.ghc842: removed broken 8.4.x deriving-compat override
2018-04-20 14:09:43 -04:00
Peter Simons
6c577a37b6
Merge branch 'master' into hs-vulkan
2018-04-20 17:51:07 +02:00
Pi3r
844ba7e34a
Enable language-puppet again
...
The latest version of `language-puppet` now works with the latest `lts-11`:
https://www.stackage.org/lts-11.5/package/language-puppet-1.3.17
2018-04-20 15:49:41 +02:00
Peter Simons
7c1b8ac85f
haskell-monad-logger: use latest version to avoid bug in current LTS version
2018-04-20 15:24:03 +02:00
Peter Simons
2c4e291083
haskell-brick: jailbreak for the benefit of GHC 8.4.2
2018-04-20 15:24:03 +02:00
Michael Alan Dorman
cb7b52a1b1
hlint, hoogle: add override for extra package
2018-04-20 15:24:03 +02:00
Peter Simons
86e65430f6
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.9.2-6-g7882850 from Hackage revision
452dc1872a
.
2018-04-20 15:24:02 +02:00
Peter Simons
657f3e099c
hackage2nix: disable failing Hydra builds
2018-04-20 15:24:01 +02:00
Peter Simons
18053a4593
LTS Haskell 11.5
2018-04-20 15:24:01 +02:00
Joe Hermaszewski
7abfefaaf4
haskellPackages.vulkan: Fix dependency for vulkan
2018-04-19 17:23:20 +08:00
Michael Alan Dorman
9358f60f94
taffybar: fix build
...
Closes https://github.com/NixOS/nixpkgs/issues/38531 .
2018-04-12 09:06:33 +02:00