mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
Merge pull request #315581 from raboof/sbt-add-propagated-ncurses-dep
sbt: add ncurses as propagated build input
This commit is contained in:
commit
89cba267d7
@ -4,6 +4,7 @@
|
||||
, jre
|
||||
, autoPatchelfHook
|
||||
, zlib
|
||||
, ncurses
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
@ -26,6 +27,11 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
zlib
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# for infocmp
|
||||
ncurses
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user