coyim: nixfmt

+27 -14
+27 -14
pkgs/by-name/co/coyim/package.nix
··· 1 - { lib 2 - , stdenv 3 - , buildGoModule 4 - , fetchFromGitHub 5 - , pkg-config 6 - , cairo 7 - , gdk-pixbuf 8 - , glib 9 - , adwaita-icon-theme 10 - , wrapGAppsHook3 11 - , gtk3 12 }: 13 14 buildGoModule { ··· 24 25 vendorHash = "sha256-zG7r/Db6XiwKoHRduGj3tEh/KT1hsuBoSGLYaZ+qO0Y="; 26 27 - nativeBuildInputs = [ pkg-config wrapGAppsHook3 ]; 28 29 - buildInputs = [ glib cairo gdk-pixbuf gtk3 adwaita-icon-theme ]; 30 31 meta = { 32 description = "Safe and secure chat client"; 33 mainProgram = "coyim"; 34 homepage = "https://coy.im/"; 35 license = lib.licenses.gpl3; 36 - platforms = [ "x86_64-linux" "x86_64-darwin" ]; 37 broken = stdenv.hostPlatform.isDarwin; 38 maintainers = with lib.maintainers; [ PapayaJackal ]; 39 };
··· 1 + { 2 + lib, 3 + stdenv, 4 + buildGoModule, 5 + fetchFromGitHub, 6 + pkg-config, 7 + cairo, 8 + gdk-pixbuf, 9 + glib, 10 + adwaita-icon-theme, 11 + wrapGAppsHook3, 12 + gtk3, 13 }: 14 15 buildGoModule { ··· 25 26 vendorHash = "sha256-zG7r/Db6XiwKoHRduGj3tEh/KT1hsuBoSGLYaZ+qO0Y="; 27 28 + nativeBuildInputs = [ 29 + pkg-config 30 + wrapGAppsHook3 31 + ]; 32 33 + buildInputs = [ 34 + glib 35 + cairo 36 + gdk-pixbuf 37 + gtk3 38 + adwaita-icon-theme 39 + ]; 40 41 meta = { 42 description = "Safe and secure chat client"; 43 mainProgram = "coyim"; 44 homepage = "https://coy.im/"; 45 license = lib.licenses.gpl3; 46 + platforms = [ 47 + "x86_64-linux" 48 + "x86_64-darwin" 49 + ]; 50 broken = stdenv.hostPlatform.isDarwin; 51 maintainers = with lib.maintainers; [ PapayaJackal ]; 52 };