From df6c7fe0fd861fc7ac178060c54a78a2c9f123ae Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 11 Dec 2022 11:25:54 +0100 Subject: [PATCH] roswell: add changelog to meta --- pkgs/development/tools/roswell/default.nix | 26 +++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/roswell/default.nix b/pkgs/development/tools/roswell/default.nix index f141ebb0118..d58a7b49bb6 100644 --- a/pkgs/development/tools/roswell/default.nix +++ b/pkgs/development/tools/roswell/default.nix @@ -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"; }; }