mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
Merge pull request #9828 from drvink/fix-ginsu-deps
haskellPackages: ginsu: add missing deps
This commit is contained in:
commit
4c089421d7
@ -1014,4 +1014,14 @@ self: super: {
|
||||
# https://github.com/goldfirere/singletons/issues/122
|
||||
singletons = dontCheck super.singletons;
|
||||
|
||||
# cabal2nix doesn't pick up some of the dependencies.
|
||||
ginsu = let
|
||||
g = addBuildDepend super.ginsu pkgs.perl;
|
||||
g' = overrideCabal g (drv: {
|
||||
executableSystemDepends = (drv.executableSystemDepends or []) ++ [
|
||||
pkgs.ncurses
|
||||
];
|
||||
});
|
||||
in g';
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user