xxkb: remove outdated assert, cleanup meta

authored by

Sandro Jäckel and committed by
Sandro Jäckel
8ce8d73b 3a3705ba

+5 -7
+5 -7
pkgs/applications/misc/xxkb/default.nix
··· 14 14 , pkg-config 15 15 }: 16 16 17 - assert svgSupport -> 18 - librsvg != null && glib != null && gdk-pixbuf != null && pkg-config != null; 19 - 20 17 stdenv.mkDerivation rec { 21 18 pname = "xxkb"; 22 19 version = "1.11.1"; ··· 27 24 }; 28 25 29 26 nativeBuildInputs = [ imake gccmakedep ]; 27 + 30 28 buildInputs = [ 31 29 libX11 32 30 libXt ··· 49 47 50 48 installTargets = [ "install" "install.man" ]; 51 49 52 - meta = { 50 + meta = with lib; { 53 51 description = "A keyboard layout indicator and switcher"; 54 52 homepage = "http://xxkb.sourceforge.net/"; 55 - license = lib.licenses.artistic2; 56 - maintainers = with lib.maintainers; [ rasendubi ]; 57 - platforms = lib.platforms.linux; 53 + license = licenses.artistic2; 54 + maintainers = with maintainers; [ rasendubi ]; 55 + platforms = platforms.linux; 58 56 }; 59 57 }