neardal: add 'ncl' and 'demo' application

+4 -2
+4 -2
pkgs/development/libraries/neardal/default.nix
··· 1 - { stdenv, fetchFromGitHub, autoconf, automake, libtool, gettext, pkgconfig, glib, readline }: 1 + { stdenv, fetchFromGitHub, autoconf, automake, libtool, gettext, pkgconfig, glib, readline, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "neardal-0.7-post-git-20150930"; ··· 10 10 sha256 = "12qwg7qiw2wfpaxfg2fjkmj5lls0g33xp6w433g8bnkvwlq4s29g"; 11 11 }; 12 12 13 - buildInputs = [ autoconf automake libtool pkgconfig glib readline ]; 13 + buildInputs = [ autoconf automake libtool pkgconfig glib readline makeWrapper ]; 14 14 15 15 preConfigure = '' 16 + substituteInPlace "ncl/Makefile.am" --replace "noinst_PROGRAMS" "bin_PROGRAMS" 17 + substituteInPlace "demo/Makefile.am" --replace "noinst_PROGRAMS" "bin_PROGRAMS" 16 18 sh autogen.sh 17 19 ''; 18 20