mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
67 lines
1.4 KiB
Nix
67 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, callPackage
|
|
|
|
# Linux deps
|
|
, libGL
|
|
, xorg
|
|
|
|
# Darwin deps
|
|
, CoreFoundation
|
|
, Cocoa
|
|
, AudioToolbox
|
|
, OpenGL
|
|
, Foundation
|
|
, ForceFeedback
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "lobster";
|
|
version = "2024.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aardappel";
|
|
repo = "lobster";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-EBgb442wI9qU/o6EVCwPnMtPuv1f6Xk2+CZpKWXf3tY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = if stdenv.hostPlatform.isDarwin
|
|
then [
|
|
CoreFoundation
|
|
Cocoa
|
|
AudioToolbox
|
|
OpenGL
|
|
Foundation
|
|
ForceFeedback
|
|
]
|
|
else [
|
|
libGL
|
|
xorg.libX11
|
|
xorg.libXext
|
|
];
|
|
|
|
preConfigure = ''
|
|
cd dev
|
|
'';
|
|
|
|
passthru.tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix {};
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
homepage = "https://strlen.com/lobster/";
|
|
description = "Lobster programming language";
|
|
mainProgram = "lobster";
|
|
longDescription = ''
|
|
Lobster is a programming language that tries to combine the advantages of
|
|
very static typing and memory management with a very lightweight,
|
|
friendly and terse syntax, by doing most of the heavy lifting for you.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
platforms = platforms.all;
|
|
};
|
|
})
|