cconv: expand platforms to all

+6 -5
+6 -5
pkgs/tools/text/cconv/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook }: 2 - let version = "0.6.3"; in 3 - stdenv.mkDerivation { 1 + { lib, stdenv, fetchurl, autoreconfHook, libiconv }: 2 + 3 + stdenv.mkDerivation rec { 4 4 pname = "cconv"; 5 - inherit version; 5 + version = "0.6.3"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/xiaoyjy/cconv/archive/v${version}.tar.gz"; ··· 10 10 }; 11 11 12 12 nativeBuildInputs = [ autoreconfHook ]; 13 + buildInputs = [ libiconv ]; 13 14 14 15 meta = with lib; { 15 16 description = "A iconv based simplified-traditional chinese conversion tool"; 16 17 homepage = "https://github.com/xiaoyjy/cconv"; 17 18 license = licenses.mit; 18 - platforms = platforms.linux; 19 + platforms = platforms.all; 19 20 maintainers = [ maintainers.redfish64 ]; 20 21 }; 21 22 }