mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
hledger-ui: pin to 1.32.* to match hledger{,-lib}
This commit is contained in:
parent
23ad7292c8
commit
0756224750
@ -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
|
||||
|
@ -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 ];
|
||||
}) {};
|
||||
|
Loading…
Reference in New Issue
Block a user