Adding CL-Launch. CL-Launch is a wrapper for unified launching of various Lisp implementations
This commit is contained in:
parent
65ad55c425
commit
bfbbb12e35
34
pkgs/development/tools/misc/cl-launch/default.nix
Normal file
34
pkgs/development/tools/misc/cl-launch/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
let
|
||||||
|
s = # Generated upstream information
|
||||||
|
rec {
|
||||||
|
baseName="cl-launch";
|
||||||
|
version="3.21.1";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
hash="1241lyn2a3ry06ii9zlns0cj462bi7rih41vlbbmra1chj4c21ij";
|
||||||
|
url="http://common-lisp.net/project/xcvb/cl-launch/cl-launch-3.21.1.tar.gz";
|
||||||
|
sha256="1241lyn2a3ry06ii9zlns0cj462bi7rih41vlbbmra1chj4c21ij";
|
||||||
|
};
|
||||||
|
buildInputs = [
|
||||||
|
];
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit (s) name version;
|
||||||
|
inherit buildInputs;
|
||||||
|
src = fetchurl {
|
||||||
|
inherit (s) url sha256;
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
export makeFlags="$makeFlags PREFIX='$out'"
|
||||||
|
mkdir -p "$out/bin"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
inherit (s) version;
|
||||||
|
description = ''Common Lisp launcher script'';
|
||||||
|
license = stdenv.lib.licenses.llgpl21 ;
|
||||||
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
2
pkgs/development/tools/misc/cl-launch/default.upstream
Normal file
2
pkgs/development/tools/misc/cl-launch/default.upstream
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
url http://common-lisp.net/project/xcvb/cl-launch/
|
||||||
|
version_link '.-[0-9].*[0-9][.]tar[.].*'
|
@ -148,6 +148,12 @@
|
|||||||
url = http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html;
|
url = http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
llgpl21 = {
|
||||||
|
shortName = "LLGPLv2.1";
|
||||||
|
fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp";
|
||||||
|
url = http://opensource.franz.com/preamble.html;
|
||||||
|
};
|
||||||
|
|
||||||
lgpl3 = {
|
lgpl3 = {
|
||||||
shortName = "LGPLv3";
|
shortName = "LGPLv3";
|
||||||
fullName = "GNU Lesser General Public License version 3 only";
|
fullName = "GNU Lesser General Public License version 3 only";
|
||||||
|
@ -3360,6 +3360,8 @@ let
|
|||||||
|
|
||||||
chromedriver = callPackage ../development/tools/selenium/chromedriver { gconf = gnome.GConf; };
|
chromedriver = callPackage ../development/tools/selenium/chromedriver { gconf = gnome.GConf; };
|
||||||
|
|
||||||
|
"cl-launch" = callPackage ../development/tools/misc/cl-launch {};
|
||||||
|
|
||||||
complexity = callPackage ../development/tools/misc/complexity { };
|
complexity = callPackage ../development/tools/misc/complexity { };
|
||||||
|
|
||||||
ctags = callPackage ../development/tools/misc/ctags { };
|
ctags = callPackage ../development/tools/misc/ctags { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user