haskellPackages.taskwarrior: Pin version for aeson compat

This commit is contained in:
Malte Brandy 2021-10-19 00:26:00 +02:00
parent 42c8f72096
commit d769c58ee8
No known key found for this signature in database
GPG Key ID: 226A2D41EF5378C9
2 changed files with 28 additions and 0 deletions

View File

@ -100,6 +100,8 @@ default-package-overrides:
- hiedb == 0.4.0.* - hiedb == 0.4.0.*
# 2021-10-13: weeder 2.3.0 require GHC == 9.0.*; remove pin when GHC version changes # 2021-10-13: weeder 2.3.0 require GHC == 9.0.*; remove pin when GHC version changes
- weeder < 2.3.0 - weeder < 2.3.0
# 2021-10-10: taskwarrior 0.4 requires aeson > 2.0.1.0
- taskwarrior < 0.4.0.0
extra-packages: extra-packages:
- base16-bytestring < 1 # required for cabal-install etc. - base16-bytestring < 1 # required for cabal-install etc.

View File

@ -263009,6 +263009,31 @@ self: {
}) {}; }) {};
"taskwarrior" = callPackage "taskwarrior" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, hspec
, hspec-discover, process, QuickCheck, quickcheck-instances, random
, text, time, unordered-containers, uuid
}:
mkDerivation {
pname = "taskwarrior";
version = "0.3.0.0";
sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0";
revision = "6";
editedCabalFile = "02jag4yib1fqf2fp9p323hb3vsbkrqm1k9zp2wag6ysl5kvvq1x6";
libraryHaskellDepends = [
aeson base bytestring containers process random text time
unordered-containers uuid
];
testHaskellDepends = [
aeson base hspec QuickCheck quickcheck-instances text time
unordered-containers uuid
];
testToolDepends = [ hspec-discover ];
description = "Types and aeson instances for taskwarrior tasks";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ maralorn ];
}) {};
"taskwarrior_0_4_0_0" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, hspec ({ mkDerivation, aeson, base, bytestring, containers, hspec
, hspec-discover, process, QuickCheck, quickcheck-instances, random , hspec-discover, process, QuickCheck, quickcheck-instances, random
, text, time, uuid , text, time, uuid
@ -263027,6 +263052,7 @@ self: {
testToolDepends = [ hspec-discover ]; testToolDepends = [ hspec-discover ];
description = "Types and aeson instances for taskwarrior tasks"; description = "Types and aeson instances for taskwarrior tasks";
license = lib.licenses.agpl3Plus; license = lib.licenses.agpl3Plus;
hydraPlatforms = lib.platforms.none;
maintainers = with lib.maintainers; [ maralorn ]; maintainers = with lib.maintainers; [ maralorn ];
}) {}; }) {};