picosat: fix ar and ranlib usage for cross

+4
+4
pkgs/applications/science/logic/picosat/default.nix
··· 11 11 12 12 prePatch = '' 13 13 substituteInPlace picosat.c --replace "sys/unistd.h" "unistd.h" 14 + 15 + substituteInPlace makefile.in \ 16 + --replace 'ar rc' '$(AR) rc' \ 17 + --replace 'ranlib' '$(RANLIB)' 14 18 ''; 15 19 16 20 configurePhase = "./configure.sh --shared --trace";