clisp,clisp-tip: rename name to pname&version

This commit is contained in:
Felix Buehler 2022-03-01 12:00:54 +01:00
parent f1948ab95b
commit 595e6f522a
2 changed files with 5 additions and 5 deletions

View file

@ -24,11 +24,11 @@ assert x11Support -> (libX11 != null && libXau != null && libXt != null
&& libXpm != null && xorgproto != null && libXext != null);
stdenv.mkDerivation rec {
v = "2.49";
name = "clisp-${v}";
version = "2.49";
pname = "clisp";
src = fetchurl {
url = "mirror://gnu/clisp/release/${v}/${name}.tar.bz2";
url = "mirror://gnu/clisp/release/${version}/clisp-${version}.tar.bz2";
sha256 = "8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890";
};

View file

@ -23,8 +23,8 @@ assert x11Support -> (libX11 != null && libXau != null && libXt != null
&& libXpm != null && xorgproto != null && libXext != null);
stdenv.mkDerivation rec {
v = "2.50pre20171114";
name = "clisp-${v}";
version = "2.50pre20171114";
pname = "clisp";
src = fetchhg {
url = "http://hg.code.sf.net/p/clisp/clisp";