mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, callPackage
|
|
|
|
# Linux deps
|
|
, libGL
|
|
, xorg
|
|
|
|
# Darwin deps
|
|
, CoreFoundation
|
|
, Cocoa
|
|
, AudioToolbox
|
|
, OpenGL
|
|
, Foundation
|
|
, ForceFeedback
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lobster";
|
|
version = "2023.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aardappel";
|
|
repo = "lobster";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7lMIIJ3iduyxZKwK65tle3c+az2G2Mpi4JwAeCCsTxw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = if stdenv.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.isDarwin;
|
|
homepage = "https://strlen.com/lobster/";
|
|
description = "The Lobster programming language";
|
|
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;
|
|
};
|
|
}
|