about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/cl-launch/default.nix
blob: 35cfd01ff9252b1b4e336673c2e29a46f902b496 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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;
  };
}