owl-lisp: init at 0.1.14
This commit is contained in:
parent
ba9275da88
commit
3bccedb081
31
pkgs/development/compilers/owl-lisp/default.nix
Normal file
31
pkgs/development/compilers/owl-lisp/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -480,6 +480,8 @@ with pkgs;
|
|||||||
|
|
||||||
as31 = callPackage ../development/compilers/as31 {};
|
as31 = callPackage ../development/compilers/as31 {};
|
||||||
|
|
||||||
|
owl-lisp = callPackage ../development/compilers/owl-lisp {};
|
||||||
|
|
||||||
ascii = callPackage ../tools/text/ascii { };
|
ascii = callPackage ../tools/text/ascii { };
|
||||||
|
|
||||||
asciinema = callPackage ../tools/misc/asciinema {};
|
asciinema = callPackage ../tools/misc/asciinema {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user