Unverified Commit 9f115bcc authored by misuzu's avatar misuzu Committed by GitHub
Browse files

perlPackages.UUID4Tiny: add loongarch64 and riscv64 support (#404642)

parents bdbbf852 721bd297
Loading
Loading
Loading
Loading
+11 −6
Original line number Diff line number Diff line
@@ -37571,7 +37571,12 @@ with self;
      url = "mirror://cpan/authors/id/C/CV/CVLIBRARY/UUID4-Tiny-0.003.tar.gz";
      hash = "sha256-4S9sgrg1dcORd3O0HA+1HPeDx8bPcuDJkWks4u8Hg2I=";
    };
    postPatch = lib.optionalString (stdenv.hostPlatform.isAarch64) ''
    postPatch =
      lib.optionalString
        (
          stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isLoongArch64 || stdenv.hostPlatform.isRiscV64
        )
        ''
          # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/uapi/asm-generic/unistd.h
          # printf SYS_getrandom | gcc -include sys/syscall.h -E -
          substituteInPlace lib/UUID4/Tiny.pm \