lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #268069 from moni-dz/blisp-nspath

blisp: silence implicit-function-declaration on Darwin

authored by

Weijia Wang and committed by
GitHub
867939d7 d226c63a

+3
+3
pkgs/development/embedded/blisp/default.nix
··· 32 32 "-DBLISP_USE_SYSTEM_LIBRARIES=ON" 33 33 ]; 34 34 35 + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-Wno-error=implicit-function-declaration"; 36 + 35 37 passthru.tests.version = testers.testVersion { 36 38 package = finalAttrs.finalPackage; 37 39 version = "v${finalAttrs.version}"; ··· 42 44 license = licenses.mit; 43 45 mainProgram = "blisp"; 44 46 homepage = "https://github.com/pine64/blisp"; 47 + platforms = platforms.unix; 45 48 maintainers = [ maintainers.bdd ]; 46 49 }; 47 50 })