Merge master into staging-next

main
github-actions[bot] 2 years ago committed by GitHub
commit 8ae986f7ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      pkgs/applications/science/math/singular/default.nix
  2. 4
      pkgs/misc/cliscord/default.nix
  3. 5
      pkgs/tools/filesystems/garage/default.nix
  4. 8
      pkgs/top-level/all-packages.nix

@ -4,6 +4,7 @@
, buildPackages , buildPackages
, sharutils , sharutils
, file , file
, getconf
, flint , flint
, ntl , ntl
, cddlib , cddlib
@ -87,7 +88,7 @@ stdenv.mkDerivation rec {
latex2html latex2html
texinfo4 texinfo4
texlive.combined.scheme-small texlive.combined.scheme-small
]; ] ++ lib.optionals stdenv.isDarwin [ getconf ];
depsBuildBuild = [ buildPackages.stdenv.cc ]; depsBuildBuild = [ buildPackages.stdenv.cc ];
preAutoreconf = '' preAutoreconf = ''

@ -1,4 +1,4 @@
{ lib, rustPlatform, openssl, pkg-config, fetchFromGitHub }: { lib, stdenv, rustPlatform, openssl, pkg-config, fetchFromGitHub, Security }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cliscord"; pname = "cliscord";
@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-hzZozgOkw8kFppuHiX9TQxHhxKRv8utWWbhEOIzKDLo="; sha256 = "sha256-hzZozgOkw8kFppuHiX9TQxHhxKRv8utWWbhEOIzKDLo=";
}; };
buildInputs = [ openssl ]; buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];

@ -1,4 +1,5 @@
{ lib, rustPlatform, fetchFromGitea, protobuf, testers, garage }: { lib, stdenv, rustPlatform, fetchFromGitea, protobuf, testers, Security, garage }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "garage"; pname = "garage";
version = "0.7.0"; version = "0.7.0";
@ -15,6 +16,8 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ protobuf ]; nativeBuildInputs = [ protobuf ];
buildInputs = lib.optional stdenv.isDarwin Security;
passthru = { passthru = {
tests.version = testers.testVersion { package = garage; }; tests.version = testers.testVersion { package = garage; };
}; };

@ -6079,7 +6079,9 @@ with pkgs;
gaphor = python3Packages.callPackage ../tools/misc/gaphor { }; gaphor = python3Packages.callPackage ../tools/misc/gaphor { };
garage = callPackage ../tools/filesystems/garage { }; garage = callPackage ../tools/filesystems/garage {
inherit (darwin.apple_sdk.frameworks) Security;
};
garmin-plugin = callPackage ../applications/misc/garmin-plugin {}; garmin-plugin = callPackage ../applications/misc/garmin-plugin {};
@ -14146,7 +14148,9 @@ with pkgs;
clips = callPackage ../development/interpreters/clips { }; clips = callPackage ../development/interpreters/clips { };
cliscord = callPackage ../misc/cliscord { }; cliscord = callPackage ../misc/cliscord {
inherit (darwin.apple_sdk.frameworks) Security;
};
clisp = callPackage ../development/interpreters/clisp { }; clisp = callPackage ../development/interpreters/clisp { };
clisp-tip = callPackage ../development/interpreters/clisp/hg.nix { }; clisp-tip = callPackage ../development/interpreters/clisp/hg.nix { };

Loading…
Cancel
Save