roswell: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-11 11:25:54 +01:00 committed by GitHub
parent b88aa7d155
commit df6c7fe0fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,12 @@
{ lib, stdenv, fetchFromGitHub, curl, autoconf, automake, makeWrapper, sbcl }:
{ lib
, stdenv
, fetchFromGitHub
, curl
, autoconf
, automake
, makeWrapper
, sbcl
}:
stdenv.mkDerivation rec {
pname = "roswell";
@ -8,7 +16,7 @@ stdenv.mkDerivation rec {
owner = "roswell";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Aqgv2WPmQDuBR4/OgjPeC+kzHL3DrImL24z7fbsfGRo=";
hash = "sha256-Aqgv2WPmQDuBR4/OgjPeC+kzHL3DrImL24z7fbsfGRo=";
};
patches = [
@ -31,16 +39,24 @@ stdenv.mkDerivation rec {
--prefix PATH : ${lib.makeBinPath [ sbcl ]} --argv0 ros
'';
nativeBuildInputs = [ autoconf automake makeWrapper ];
nativeBuildInputs = [
autoconf
automake
makeWrapper
];
buildInputs = [ sbcl curl ];
buildInputs = [
sbcl
curl
];
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;
maintainers = with maintainers; [ hiro98 ];
platforms = platforms.unix;
homepage = "https://github.com/roswell/roswell";
changelog = "https://github.com/roswell/roswell/blob/v${version}/ChangeLog";
mainProgram = "ros";
};
}