summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-05-10 22:27:56 +0800
committerPeter Hoeg <peter@hoeg.com>2018-05-10 22:28:09 +0800
commit468841cea41a9ba33c4c262518e6f0796b99a440 (patch)
tree8e0ff0e9c4193a06f6d49b6459ae59a640d324ec
parent56bd3b7db8e2958121b963f9d87f5d1851724710 (diff)
downloadnixlib-468841cea41a9ba33c4c262518e6f0796b99a440.tar
nixlib-468841cea41a9ba33c4c262518e6f0796b99a440.tar.gz
nixlib-468841cea41a9ba33c4c262518e6f0796b99a440.tar.bz2
nixlib-468841cea41a9ba33c4c262518e6f0796b99a440.tar.lz
nixlib-468841cea41a9ba33c4c262518e6f0796b99a440.tar.xz
nixlib-468841cea41a9ba33c4c262518e6f0796b99a440.tar.zst
nixlib-468841cea41a9ba33c4c262518e6f0796b99a440.zip
owl-lisp: 0.1.14 -> 0.1.15
-rw-r--r--pkgs/development/compilers/owl-lisp/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/compilers/owl-lisp/default.nix b/pkgs/development/compilers/owl-lisp/default.nix
index 4e2f8b2af5b4..ee076acd8b17 100644
--- a/pkgs/development/compilers/owl-lisp/default.nix
+++ b/pkgs/development/compilers/owl-lisp/default.nix
@@ -1,16 +1,18 @@
-{ stdenv, fetchFromGitHub, coreutils }:
+{ stdenv, fetchFromGitHub, coreutils, which }:
 
 stdenv.mkDerivation rec {
   name    = "owl-lisp-${version}";
-  version = "0.1.14";
+  version = "0.1.15";
 
   src = fetchFromGitHub {
     owner  = "aoh";
     repo   = "owl-lisp";
     rev    = "v${version}";
-    sha256 = "1rr0icprna3zs834q1pj4xy21cql3pcfknfkqipq01rhnl2893sz";
+    sha256 = "0pczmra2x6icyz6b6g66pp5ij83cq4wszg0ssw8qm7a5314kxkq4";
   };
 
+  nativeBuildInputs = [ which ];
+
   prePatch = ''
     substituteInPlace Makefile --replace /usr $out
 
@@ -19,7 +21,7 @@ stdenv.mkDerivation rec {
     done
   '';
 
-  # tests are already run as part of the compilation process
+  # tests are run as part of the compilation process
   doCheck = false;
 
   meta = with stdenv.lib; {