blob: 1744dc0bd1f87af946c0c318df709ef857f63233 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
self: super: {
elinks = super.elinks.overrideAttrs (old:
self.mylibs.fetchedGithub ./elinks.json // rec {
preConfigure = ''sh autogen.sh'';
buildInputs = old.buildInputs ++ (with self; [ gettext automake autoconf ]);
configureFlags = [
"--disable-smb" "--without-x" "--enable-cgi"
"--enable-leds" "--enable-256-colors"
"--enable-html-highlight" "--with-zlib"
];
patches = [];
}
);
}
|