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