nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6stdenv.mkDerivation (finalAttrs: {
7 pname = "cl-launch";
8 version = "4.1.4.1";
9
10 src = fetchurl {
11 url = "http://common-lisp.net/project/xcvb/cl-launch/cl-launch-${finalAttrs.version}.tar.gz";
12 sha256 = "sha256-v5aURs2Verhn2HmGiijvY9br20OTPFrOGBWsb6cHhSQ=";
13 };
14
15 preConfigure = ''
16 mkdir -p "$out/bin"
17 '';
18
19 makeFlags = [
20 "PREFIX=${placeholder "out"}"
21 ];
22
23 preBuild = ''
24 sed -e 's/\t\t@/\t\t/g' -i Makefile
25 '';
26
27 meta = {
28 description = "Common Lisp launcher script";
29 license = lib.licenses.llgpl21;
30 maintainers = with lib.maintainers; [ raskin ];
31 platforms = lib.platforms.unix;
32 };
33})