Merge pull request #205589 from r-ryantm/auto-update/roswell

roswell: 21.10.14.111 -> 22.12.14.112
This commit is contained in:
Fabian Affolter 2022-12-11 12:13:06 +01:00 committed by GitHub
commit dfc4676ee2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,22 @@
{ lib, stdenv, fetchFromGitHub, curl, autoconf, automake, makeWrapper, sbcl }: { lib
, stdenv
, fetchFromGitHub
, curl
, autoconf
, automake
, makeWrapper
, sbcl
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "roswell"; pname = "roswell";
version = "21.10.14.111"; version = "22.12.14.112";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "roswell"; owner = "roswell";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-K4RDNTY8g6MNjjiwXMmYaZm0fChJ1C1eTpc0h7ja1ds="; hash = "sha256-Aqgv2WPmQDuBR4/OgjPeC+kzHL3DrImL24z7fbsfGRo=";
}; };
patches = [ patches = [
@ -31,16 +39,24 @@ stdenv.mkDerivation rec {
--prefix PATH : ${lib.makeBinPath [ sbcl ]} --argv0 ros --prefix PATH : ${lib.makeBinPath [ sbcl ]} --argv0 ros
''; '';
nativeBuildInputs = [ autoconf automake makeWrapper ]; nativeBuildInputs = [
autoconf
automake
makeWrapper
];
buildInputs = [ sbcl curl ]; buildInputs = [
sbcl
curl
];
meta = with lib; { meta = with lib; {
description = "Roswell is a Lisp implementation installer/manager, launcher, and much more"; description = "Lisp implementation installer/manager and launcher";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ hiro98 ]; maintainers = with maintainers; [ hiro98 ];
platforms = platforms.unix; platforms = platforms.unix;
homepage = "https://github.com/roswell/roswell"; homepage = "https://github.com/roswell/roswell";
changelog = "https://github.com/roswell/roswell/blob/v${version}/ChangeLog";
mainProgram = "ros"; mainProgram = "ros";
}; };
} }