27 lines
631 B
Nix
27 lines
631 B
Nix
{ lib, stdenv, fetchurl }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "cl-launch";
|
|
version = "4.1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://common-lisp.net/project/xcvb/cl-launch/cl-launch-${version}.tar.gz";
|
|
sha256 = "sha256-v5aURs2Verhn2HmGiijvY9br20OTPFrOGBWsb6cHhSQ=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
export makeFlags="$makeFlags PREFIX='$out'"
|
|
mkdir -p "$out/bin"
|
|
'';
|
|
|
|
preBuild = ''
|
|
sed -e 's/\t\t@/\t\t/g' -i Makefile
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Common Lisp launcher script";
|
|
license = licenses.llgpl21;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|