haskellPackages.nfc: 0.1.0 -> 0.1.1

This commit is contained in:
Alex Wied 2022-07-25 11:37:47 -04:00 committed by sternenseemann
parent ea445844c8
commit 4b33be0c18
4 changed files with 10 additions and 3 deletions

View File

@ -3537,7 +3537,6 @@ broken-packages:
- newtype-th
- next-ref
- nextstep-plist
- nfc
- NGrams
- niagra
- nibblestring

View File

@ -165,6 +165,8 @@ package-maintainers:
- spago
- stack
- termonad
centromere:
- nfc
dalpd:
- ghc-vis
- svgcairo

View File

@ -973,6 +973,13 @@ self: super: builtins.intersectAttrs super {
'';
}) super.jacinda;
nfc = overrideCabal (drv: {
isExecutable = true;
executableHaskellDepends = with self; drv.executableHaskellDepends or [] ++ [ base base16-bytestring bytestring ];
configureFlags = drv.configureFlags or [] ++ [ "-fbuild-examples" ];
enableSeparateBinOutput = true;
}) super.nfc;
# haskell-language-server plugins all use the same test harness so we give them what we want in this loop.
} // pkgs.lib.mapAttrs
(_: overrideCabal (drv: {

View File

@ -200632,8 +200632,7 @@ self: {
libraryToolDepends = [ c2hs ];
description = "libnfc bindings";
license = lib.licenses.publicDomain;
hydraPlatforms = lib.platforms.none;
broken = true;
maintainers = [ lib.maintainers.centromere ];
}) {inherit (pkgs) libnfc;};
"ngram" = callPackage