lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 31 lines 783 B view raw
1{ stdenv, fetchFromGitHub, coreutils }: 2 3stdenv.mkDerivation rec { 4 name = "owl-lisp-${version}"; 5 version = "0.1.14"; 6 7 src = fetchFromGitHub { 8 owner = "aoh"; 9 repo = "owl-lisp"; 10 rev = "v${version}"; 11 sha256 = "1rr0icprna3zs834q1pj4xy21cql3pcfknfkqipq01rhnl2893sz"; 12 }; 13 14 prePatch = '' 15 substituteInPlace Makefile --replace /usr $out 16 17 for f in tests/run tests/exec.sh ; do 18 substituteInPlace $f --replace /bin/echo ${coreutils}/bin/echo 19 done 20 ''; 21 22 # tests are already run as part of the compilation process 23 doCheck = false; 24 25 meta = with stdenv.lib; { 26 descripton = "A functional lisp"; 27 homepage = https://github.com/aoh/owl-lisp; 28 license = licenses.mit; 29 maintainers = with maintainers; [ peterhoeg ]; 30 }; 31}