3
0
Fork 0
forked from mirrors/nixpkgs

emacsPackages.melpaPackages: fix cmake-mode

This commit is contained in:
Herwig Hochleitner 2019-08-12 02:26:34 +02:00
parent ff79e9dad2
commit ac2eb3151d
2 changed files with 10 additions and 1 deletions

View file

@ -50,6 +50,15 @@ env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../ -A emacsPac
# part of a larger package
caml = dontConfigure super.caml;
cmake-mode = super.cmake-mode.overrideAttrs (attrs: {
buildInputs = (attrs.buildInputs or []) ++ [
external.openssl
];
nativeBuildInputs = (attrs.nativeBuildInputs or []) ++ [
external.pkgconfig
];
});
# Expects bash to be at /bin/bash
company-rtags = markBroken super.company-rtags;

View file

@ -17961,7 +17961,7 @@ in
inherit
autoconf automake editorconfig-core-c git libffi libpng pkgconfig
poppler rtags w3m zlib substituteAll rustPlatform cmake llvmPackages
libtool zeromq;
libtool zeromq openssl;
};
};