From d665aecd88708faec1c7ff044b5446b381131d98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 1 Feb 2021 09:25:59 +0100 Subject: [PATCH] fix 32-bit build --- default.nix | 12 ++++++++++++ pkgs/sops-install-secrets/main.go | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index c474d5f..7d3ae1c 100644 --- a/default.nix +++ b/default.nix @@ -40,5 +40,17 @@ in rec { fixupPhase = ":"; }); + cross-build = sops-install-secrets.overrideAttrs (old: { + name = "cross-build"; + nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.gox ]; + buildPhase = '' + (cd pkgs/sops-install-secrets && gox -os linux) + ''; + installPhase = '' + touch $out + ''; + fixupPhase = ":"; + }); + # integration tests } // pkgs.lib.optionalAttrs (pkgs.stdenv.isLinux) sops-install-secrets.tests diff --git a/pkgs/sops-install-secrets/main.go b/pkgs/sops-install-secrets/main.go index 1e99827..1d683c2 100644 --- a/pkgs/sops-install-secrets/main.go +++ b/pkgs/sops-install-secrets/main.go @@ -251,7 +251,7 @@ func decryptSecrets(secrets []secret) error { return nil } -const RAMFS_MAGIC = 0x858458f6 +const RAMFS_MAGIC int32 = -2054924042 func mountSecretFs(mountpoint string, keysGid int) error { if err := os.MkdirAll(mountpoint, 0750); err != nil { @@ -262,7 +262,7 @@ func mountSecretFs(mountpoint string, keysGid int) error { if err := unix.Statfs(mountpoint, &buf); err != nil { return fmt.Errorf("Cannot get statfs for directory '%s': %w", mountpoint, err) } - if buf.Type != RAMFS_MAGIC { + if int32(buf.Type) != RAMFS_MAGIC { if err := unix.Mount("none", mountpoint, "ramfs", unix.MS_NODEV|unix.MS_NOSUID, "mode=0750"); err != nil { return fmt.Errorf("Cannot mount: %s", err) }