tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
neardal: add 'ncl' and 'demo' application
Thomas Strobel
10 years ago
ca4a4714
1ddc1cdc
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
neardal
default.nix
+4
-2
pkgs/development/libraries/neardal/default.nix
···
1
1
-
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, gettext, pkgconfig, glib, readline }:
1
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
13
-
buildInputs = [ autoconf automake libtool pkgconfig glib readline ];
13
13
+
buildInputs = [ autoconf automake libtool pkgconfig glib readline makeWrapper ];
14
14
15
15
preConfigure = ''
16
16
+
substituteInPlace "ncl/Makefile.am" --replace "noinst_PROGRAMS" "bin_PROGRAMS"
17
17
+
substituteInPlace "demo/Makefile.am" --replace "noinst_PROGRAMS" "bin_PROGRAMS"
16
18
sh autogen.sh
17
19
'';
18
20