hledger-ui: pin to 1.32.* to match hledger{,-lib}

This commit is contained in:
sternenseemann 2024-05-12 12:16:00 +02:00
parent 23ad7292c8
commit 0756224750
2 changed files with 29 additions and 0 deletions

View File

@ -29,6 +29,8 @@ default-package-overrides:
# 2021-11-09: ghc-bignum is bundled starting with 9.0.1; only 1.0 builds with GHCs prior to 9.2.1
- ghc-bignum == 1.0
- hie-bios == 0.13.1
# 2024-05-10: need to match hlegder from stackage
- hledger-ui < 1.33
extra-packages:
- Cabal-syntax == 3.6.* # Dummy package that ensures packages depending on Cabal-syntax can work for Cabal < 3.8

View File

@ -150471,6 +150471,32 @@ self: {
}) {};
"hledger-ui" = callPackage
({ mkDerivation, ansi-terminal, async, base, brick, cmdargs
, containers, data-default, directory, doclayout, extra, filepath
, fsnotify, hledger, hledger-lib, megaparsec, microlens
, microlens-platform, mtl, process, safe, split, text, text-zipper
, time, transformers, unix, vector, vty, vty-crossplatform
}:
mkDerivation {
pname = "hledger-ui";
version = "1.32.3";
sha256 = "0981c039xp1l65vdn4y0rl3qvlprk15f4s22z1jkkrixx3aqnq4p";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-terminal async base brick cmdargs containers data-default
directory doclayout extra filepath fsnotify hledger hledger-lib
megaparsec microlens microlens-platform mtl process safe split text
text-zipper time transformers unix vector vty vty-crossplatform
];
executableHaskellDepends = [ base ];
description = "Terminal interface for the hledger accounting system";
license = lib.licenses.gpl3Only;
mainProgram = "hledger-ui";
maintainers = [ lib.maintainers.maralorn ];
}) {};
"hledger-ui_1_33" = callPackage
({ mkDerivation, ansi-terminal, async, base, brick, cmdargs
, containers, data-default, directory, doclayout, extra, filepath
, fsnotify, hledger, hledger-lib, megaparsec, microlens
@ -150492,6 +150518,7 @@ self: {
executableHaskellDepends = [ base ];
description = "Terminal interface for the hledger accounting system";
license = lib.licenses.gpl3Only;
hydraPlatforms = lib.platforms.none;
mainProgram = "hledger-ui";
maintainers = [ lib.maintainers.maralorn ];
}) {};