Adding CL-Launch. CL-Launch is a wrapper for unified launching of various Lisp implementations
This commit is contained in:
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[.].*'
|
||||
Reference in New Issue
Block a user