about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-08-25 19:30:17 +0200
committerRobin Gloster <mail@glob.in>2019-08-25 19:30:17 +0200
commitb98e4c0516ce21521abc8af414f2ee537f56e2db (patch)
tree1497e5211f5dbe368cb07831faa376b0c83de58c
parent616b8343c4c384f651f51d8c9b8e96239e1113d0 (diff)
downloadnixlib-b98e4c0516ce21521abc8af414f2ee537f56e2db.tar
nixlib-b98e4c0516ce21521abc8af414f2ee537f56e2db.tar.gz
nixlib-b98e4c0516ce21521abc8af414f2ee537f56e2db.tar.bz2
nixlib-b98e4c0516ce21521abc8af414f2ee537f56e2db.tar.lz
nixlib-b98e4c0516ce21521abc8af414f2ee537f56e2db.tar.xz
nixlib-b98e4c0516ce21521abc8af414f2ee537f56e2db.tar.zst
nixlib-b98e4c0516ce21521abc8af414f2ee537f56e2db.zip
getxbook: fix merge
-rw-r--r--pkgs/applications/misc/getxbook/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/misc/getxbook/default.nix b/pkgs/applications/misc/getxbook/default.nix
index 02d3474b2094..fff1b02b84ef 100644
--- a/pkgs/applications/misc/getxbook/default.nix
+++ b/pkgs/applications/misc/getxbook/default.nix
@@ -9,14 +9,12 @@ stdenv.mkDerivation rec {
     sha256 = "0ihwrx4gspj8l7fc8vxch6dpjrw1lvv9z3c19f0wxnmnxhv1cjvs";
   };
 
-  NIX_CFLAGS_COMPILE = [ "-Wno-error=format-truncation" ];
+  NIX_CFLAGS_COMPILE = [ "-Wno-error=format-truncation" "-Wno-error=deprecated-declarations" ];
 
   buildInputs = [ openssl ];
 
   makeFlags = [ "PREFIX=$(out)" ];
 
-  NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
-
   meta = with stdenv.lib; {
     description = "A collection of tools to download books from Google Books";
     homepage    = https://njw.me.uk/getxbook/;