mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
haskellPackages.iCalendar: Fix build and enter maintainer
This commit is contained in:
parent
6fbb612735
commit
7ce74efc56
@ -1736,4 +1736,11 @@ self: super: {
|
|||||||
# 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream.
|
# 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream.
|
||||||
extensions = assert super.extensions.version == "0.0.0.1"; doJailbreak super.extensions;
|
extensions = assert super.extensions.version == "0.0.0.1"; doJailbreak super.extensions;
|
||||||
|
|
||||||
|
# 2021-04-02: iCalendar is basically unmaintained.
|
||||||
|
# There are PRs for bumping the bounds: https://github.com/chrra/iCalendar/pull/46
|
||||||
|
iCalendar = overrideCabal (doJailbreak super.iCalendar) {
|
||||||
|
# Overriding bounds behind a cabal flag
|
||||||
|
preConfigure = ''substituteInPlace iCalendar.cabal --replace "network >=2.6 && <2.7" "network -any"'';
|
||||||
|
};
|
||||||
|
|
||||||
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
||||||
|
@ -2849,6 +2849,7 @@ package-maintainers:
|
|||||||
- taskwarrior
|
- taskwarrior
|
||||||
- haskell-language-server
|
- haskell-language-server
|
||||||
- shake-bench
|
- shake-bench
|
||||||
|
- iCalendar
|
||||||
sorki:
|
sorki:
|
||||||
- cayene-lpp
|
- cayene-lpp
|
||||||
- data-stm32
|
- data-stm32
|
||||||
@ -7025,7 +7026,6 @@ broken-packages:
|
|||||||
- ib-api
|
- ib-api
|
||||||
- iban
|
- iban
|
||||||
- ical
|
- ical
|
||||||
- iCalendar
|
|
||||||
- ice40-prim
|
- ice40-prim
|
||||||
- IcoGrid
|
- IcoGrid
|
||||||
- iconv-typed
|
- iconv-typed
|
||||||
|
@ -145711,8 +145711,7 @@ self: {
|
|||||||
];
|
];
|
||||||
description = "iCalendar data types, parser, and printer";
|
description = "iCalendar data types, parser, and printer";
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
hydraPlatforms = lib.platforms.none;
|
maintainers = with lib.maintainers; [ maralorn ];
|
||||||
broken = true;
|
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"iException" = callPackage
|
"iException" = callPackage
|
||||||
|
Loading…
Reference in New Issue
Block a user