From 6c7326aedd561bd9d71b98bd2e2348ccbb374538 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 10 Aug 2016 02:41:30 +0200 Subject: [PATCH] lolcode: fix build --- pkgs/development/interpreters/lolcode/default.nix | 5 +++-- 1 file 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";