Merge pull request #229072 from NickCao/libvisio

libvisio: set strictDeps, remove unneeded configureFlags

authored by Nick Cao and committed by GitHub edbd1ea4 95dc6a03

+19 -8
+19 -8
pkgs/development/libraries/libvisio/default.nix
··· 1 - { lib, stdenv, fetchurl, boost, libwpd, libwpg, pkg-config, zlib, gperf 2 - , librevenge, libxml2, icu, perl, cppunit, doxygen 3 }: 4 5 stdenv.mkDerivation rec { ··· 13 sha256 = "0k7adcbbf27l7n453cca1m6s9yj6qvb5j6bsg2db09ybf3w8vbwg"; 14 }; 15 16 - nativeBuildInputs = [ pkg-config cppunit doxygen ]; 17 - buildInputs = [ boost libwpd libwpg zlib gperf librevenge libxml2 icu perl ]; 18 - 19 - configureFlags = [ 20 - "--disable-werror" 21 - ]; 22 23 doCheck = true; 24 ··· 27 homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libvisio"; 28 license = licenses.mpl20; 29 platforms = platforms.unix; 30 }; 31 }
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , boost 5 + , libwpd 6 + , libwpg 7 + , pkg-config 8 + , zlib 9 + , gperf 10 + , librevenge 11 + , libxml2 12 + , icu 13 + , perl 14 + , cppunit 15 + , doxygen 16 }: 17 18 stdenv.mkDerivation rec { ··· 26 sha256 = "0k7adcbbf27l7n453cca1m6s9yj6qvb5j6bsg2db09ybf3w8vbwg"; 27 }; 28 29 + strictDeps = true; 30 + nativeBuildInputs = [ pkg-config doxygen perl gperf ]; 31 + buildInputs = [ boost libwpd libwpg zlib librevenge libxml2 icu cppunit ]; 32 33 doCheck = true; 34 ··· 37 homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libvisio"; 38 license = licenses.mpl20; 39 platforms = platforms.unix; 40 + maintainers = with maintainers; [ nickcao ]; 41 }; 42 }