From ffe0b43dc0e472ea2222bf2a109d073f0eac0c51 Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Thu, 23 Jun 2016 22:09:00 +0300 Subject: [PATCH] bviplus: fix build --- pkgs/applications/editors/bviplus/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/bviplus/default.nix b/pkgs/applications/editors/bviplus/default.nix index 5adb0dad26c..18a9cc5f02a 100644 --- a/pkgs/applications/editors/bviplus/default.nix +++ b/pkgs/applications/editors/bviplus/default.nix @@ -11,9 +11,11 @@ stdenv.mkDerivation rec { ncurses ]; makeFlags = "PREFIX=$(out)"; + buildFlags = [ "CFLAGS=-fgnu89-inline" ]; + meta = with lib; { - description = "ncurses based hex editor with a vim-like interface"; - homepage = "http://bviplus.sourceforge.net"; + description = "Ncurses based hex editor with a vim-like interface"; + homepage = http://bviplus.sourceforge.net; license = licenses.gpl3; platforms = platforms.linux; maintainers = with maintainers; [ cstrahan ];