Files
nixpkgs/pkgs/by-name/ro/roswell/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

64 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
curl,
autoconf,
automake,
makeWrapper,
sbcl,
}:
stdenv.mkDerivation rec {
pname = "roswell";
version = "24.10.115";
src = fetchFromGitHub {
owner = "roswell";
repo = "roswell";
rev = "v${version}";
hash = "sha256-2aYA1AzRPXaM82Sh+dMiQJcOAD0rzwV09VyLy0oS6as=";
};
patches = [
# Load the name of the image from the environment variable so that
# it can be consistently overwritten. Using the command line
# argument in the wrapper did not work.
./0001-get-image-from-environment.patch
];
preConfigure = ''
sh bootstrap
'';
configureFlags = [ "--prefix=${placeholder "out"}" ];
postInstall = ''
wrapProgram $out/bin/ros \
--set image `basename $out` \
--add-flags 'lisp=sbcl-bin/system sbcl-bin.version=system -L sbcl-bin' \
--prefix PATH : ${lib.makeBinPath [ sbcl ]} --argv0 ros
'';
nativeBuildInputs = [
autoconf
automake
makeWrapper
];
buildInputs = [
sbcl
curl
];
meta = {
description = "Lisp implementation installer/manager and launcher";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hiro98 ];
platforms = lib.platforms.unix;
homepage = "https://github.com/roswell/roswell";
changelog = "https://github.com/roswell/roswell/blob/v${version}/ChangeLog";
mainProgram = "ros";
};
}