mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
lnav: fix static build
This commit is contained in:
parent
918bf36d30
commit
2515ea7eda
1 changed files with 21 additions and 4 deletions
|
@ -1,5 +1,17 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pcre-cpp, sqlite, ncurses
|
||||
, readline, zlib, bzip2, autoconf, automake, curl }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pcre-cpp
|
||||
, sqlite
|
||||
, ncurses
|
||||
, readline
|
||||
, zlib
|
||||
, bzip2
|
||||
, autoconf
|
||||
, automake
|
||||
, curl
|
||||
, buildPackages
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lnav";
|
||||
|
@ -20,9 +32,14 @@ stdenv.mkDerivation rec {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ autoconf automake ];
|
||||
buildInputs = [
|
||||
strictDeps = true;
|
||||
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||
nativeBuildInputs = [
|
||||
autoconf
|
||||
automake
|
||||
zlib
|
||||
];
|
||||
buildInputs = [
|
||||
bzip2
|
||||
ncurses
|
||||
pcre-cpp
|
||||
|
|
Loading…
Reference in a new issue