mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
Merge pull request #3294 from nilcons/haskellfixes
Fix various Haskell packages for 7.8
This commit is contained in:
commit
5ae5d00d18
@ -8,6 +8,10 @@ cabal.mkDerivation (self: {
|
||||
sha256 = "12wk8higrp12b22zzz1b4ar1q5h7flk22bp2rvswsqri2zkbi965";
|
||||
buildDepends = [ deepseq ];
|
||||
testDepends = [ deepseq ];
|
||||
jailbreak = true;
|
||||
# TH semantics is a little bit different in GHC 7.8
|
||||
# tests needs updating, but the package is still working
|
||||
doCheck = false;
|
||||
meta = {
|
||||
description = "Template Haskell based deriver for optimised NFData instances";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
|
@ -8,6 +8,8 @@ cabal.mkDerivation (self: {
|
||||
sha256 = "0sfralwgd5b9hfqmp20v31sq96s0v7j9g920qdj3n9i5mhslhwd2";
|
||||
buildDepends = [ deepseq text ];
|
||||
testDepends = [ chell chellQuickcheck QuickCheck text ];
|
||||
# tests fragile on 32-bits
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://john-millikin.com/software/haskell-filesystem/";
|
||||
description = "High-level, byte-based file and directory path manipulations";
|
||||
|
@ -7,6 +7,7 @@ cabal.mkDerivation (self: {
|
||||
version = "0.1.1";
|
||||
sha256 = "07b8j11v0247fwaf3mv72m7aaq3crbsyrxmxa352vn9h2g6l1jsd";
|
||||
buildDepends = [ dataDefault ];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "https://github.com/haskell-pkg-janitors/template-default";
|
||||
description = "declaring Default instances just got even easier";
|
||||
|
@ -7,8 +7,8 @@
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "tz";
|
||||
version = "0.0.0.5";
|
||||
sha256 = "03s5vs08dj3r7rq78ncya6x6dazvr93gfylyynwybpai09l2y89v";
|
||||
version = "0.0.0.6";
|
||||
sha256 = "0yn2c016fzqwbgdrqp5hjn95gzp4w3gqjgax1w6wkg97bksdlq27";
|
||||
buildDepends = [ binary deepseq time tzdata vector ];
|
||||
testDepends = [
|
||||
bindingsPosix HUnit QuickCheck testFramework testFrameworkHunit
|
||||
|
Loading…
Reference in New Issue
Block a user