Revert some GMP stuff

This commit is contained in:
Smaug123
2021-10-27 20:28:12 +01:00
parent bcf7acd881
commit 752789e973
5 changed files with 25 additions and 14 deletions

View File

@@ -1,9 +1,13 @@
{ config, lib, ... }:
let pkgs = import <nixpkgs> { config = import ./config.nix; }; in
{ config, lib, pkgs, ... }:
let python = import ./python.nix { inherit pkgs; }; in
let gmp =
#if pkgs.stdenv.isDarwin then
import ./gmp.nix { inherit pkgs; }
#else pkgs.gmp
; in
{
nix.useDaemon = true;
@@ -22,8 +26,7 @@ let python = import ./python.nix { inherit pkgs; }; in
pkgs.rustc
pkgs.cargo
pkgs.clang
pkgs.gmp
pkgs.darwin.apple_sdk.frameworks.Foundation
gmp
python
#pkgs.keepassxc
];