summary refs log tree commit diff
path: root/pkgs/development/compilers/owl-lisp/default.nix
blob: b01914afc295075e19c9bfa4679fc5420a7af50a (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
27
28
29
30
31
{ stdenv, fetchFromGitHub, coreutils }:

stdenv.mkDerivation rec {
  name    = "owl-lisp-${version}";
  version = "0.1.14";

  src = fetchFromGitHub {
    owner  = "aoh";
    repo   = "owl-lisp";
    rev    = "v${version}";
    sha256 = "1rr0icprna3zs834q1pj4xy21cql3pcfknfkqipq01rhnl2893sz";
  };

  prePatch = ''
    substituteInPlace Makefile --replace /usr $out

    for f in tests/run tests/exec.sh ; do
      substituteInPlace $f --replace /bin/echo ${coreutils}/bin/echo
    done
  '';

  # tests are already run as part of the compilation process
  doCheck = false;

  meta = with stdenv.lib; {
    descripton  = "A functional lisp";
    homepage    = https://github.com/aoh/owl-lisp;
    license     = licenses.mit;
    maintainers = with maintainers; [ peterhoeg ];
  };
}