tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
owl-lisp: init at 0.1.14
Peter Hoeg
8 years ago
3bccedb0
ba9275da
+33
2 changed files
expand all
collapse all
unified
split
pkgs
development
compilers
owl-lisp
default.nix
top-level
all-packages.nix
+31
pkgs/development/compilers/owl-lisp/default.nix
reviewed
···
1
1
+
{ stdenv, fetchFromGitHub, coreutils }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "owl-lisp-${version}";
5
5
+
version = "0.1.14";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "aoh";
9
9
+
repo = "owl-lisp";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "1rr0icprna3zs834q1pj4xy21cql3pcfknfkqipq01rhnl2893sz";
12
12
+
};
13
13
+
14
14
+
prePatch = ''
15
15
+
substituteInPlace Makefile --replace /usr $out
16
16
+
17
17
+
for f in tests/run tests/exec.sh ; do
18
18
+
substituteInPlace $f --replace /bin/echo ${coreutils}/bin/echo
19
19
+
done
20
20
+
'';
21
21
+
22
22
+
# tests are already run as part of the compilation process
23
23
+
doCheck = false;
24
24
+
25
25
+
meta = with stdenv.lib; {
26
26
+
descripton = "A functional lisp";
27
27
+
homepage = https://github.com/aoh/owl-lisp;
28
28
+
license = licenses.mit;
29
29
+
maintainers = with maintainers; [ peterhoeg ];
30
30
+
};
31
31
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
480
480
481
481
as31 = callPackage ../development/compilers/as31 {};
482
482
483
483
+
owl-lisp = callPackage ../development/compilers/owl-lisp {};
484
484
+
483
485
ascii = callPackage ../tools/text/ascii { };
484
486
485
487
asciinema = callPackage ../tools/misc/asciinema {};