about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-08-10 02:41:30 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-08-10 07:12:08 +0200
commit6c7326aedd561bd9d71b98bd2e2348ccbb374538 (patch)
tree723866256983d45d73fe97da6eb2b24b33e5428b
parent43c663975caf8d3e931bfdb30573efd749075a44 (diff)
downloadnixlib-6c7326aedd561bd9d71b98bd2e2348ccbb374538.tar
nixlib-6c7326aedd561bd9d71b98bd2e2348ccbb374538.tar.gz
nixlib-6c7326aedd561bd9d71b98bd2e2348ccbb374538.tar.bz2
nixlib-6c7326aedd561bd9d71b98bd2e2348ccbb374538.tar.lz
nixlib-6c7326aedd561bd9d71b98bd2e2348ccbb374538.tar.xz
nixlib-6c7326aedd561bd9d71b98bd2e2348ccbb374538.tar.zst
nixlib-6c7326aedd561bd9d71b98bd2e2348ccbb374538.zip
lolcode: fix build
-rw-r--r--pkgs/development/interpreters/lolcode/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/lolcode/default.nix b/pkgs/development/interpreters/lolcode/default.nix
index bb05a71c9e3e..284773fe660f 100644
--- a/pkgs/development/interpreters/lolcode/default.nix
+++ b/pkgs/development/interpreters/lolcode/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, doxygen, cmake }:
+{ stdenv, fetchurl, pkgconfig, doxygen, cmake, readline }:
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
     sha256 = "1li7ikcrs7wqah7gqkirg0k61n6pm12w7pydin966x1sdn9na46b";
   };
 
-  buildInputs = [ pkgconfig doxygen cmake ];
+  nativeBuildInputs = [ pkgconfig cmake doxygen ];
+  buildInputs = [ readline ];
 
   # Maybe it clashes with lci scientific logic software package...
   postInstall = "mv $out/bin/lci $out/bin/lolcode-lci";