mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
haskellPackages.taskwarrior: Pin version for aeson compat
This commit is contained in:
parent
42c8f72096
commit
d769c58ee8
@ -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.
|
||||||
|
@ -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 ];
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user