mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
zola: remove cf-private
This commit is contained in:
parent
b0e201f349
commit
bbf5f7e3da
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, rustPlatform, cmake, pkgconfig, openssl, CoreServices, cf-private }:
|
{ stdenv, fetchFromGitHub, rustPlatform, cmake, pkgconfig, openssl, CoreServices }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "zola";
|
pname = "zola";
|
||||||
|
@ -14,7 +14,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
cargoSha256 = "1brmlg6nqyls1v62z0fg0km150q9m7h71wy67lidcnw76icmqr24";
|
cargoSha256 = "1brmlg6nqyls1v62z0fg0km150q9m7h71wy67lidcnw76icmqr24";
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices cf-private ];
|
buildInputs = [ openssl ]
|
||||||
|
++ stdenv.lib.optional stdenv.isDarwin CoreServices;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
install -D -m 444 completions/zola.bash \
|
install -D -m 444 completions/zola.bash \
|
||||||
|
|
|
@ -21270,7 +21270,6 @@ in
|
||||||
|
|
||||||
zola = callPackage ../applications/misc/zola {
|
zola = callPackage ../applications/misc/zola {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
inherit (darwin) cf-private;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
zoom-us = libsForQt59.callPackage ../applications/networking/instant-messengers/zoom-us { };
|
zoom-us = libsForQt59.callPackage ../applications/networking/instant-messengers/zoom-us { };
|
||||||
|
|
Loading…
Reference in a new issue