yudit: init at 3.1.0 (#344189)

authored by Doron Behar and committed by GitHub 7b067a12 ec22f512

+32
+32
pkgs/by-name/yu/yudit/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + xorg, 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "yudit"; 10 + version = "3.1.0"; 11 + 12 + src = fetchurl { 13 + url = "https://www.yudit.org/download/yudit-${finalAttrs.version}.tar.gz"; 14 + hash = "sha256-oYgjTWEnNXaE9Sw9bGpLnY9avQ99tnJWa/RE73p85Vc="; 15 + }; 16 + 17 + buildInputs = [ 18 + xorg.libX11 19 + ]; 20 + 21 + meta = { 22 + description = "Free Unicode plain-text editor for Unix-like systems"; 23 + homepage = "https://www.yudit.org/"; 24 + changelog = "https://www.yudit.org/download/CHANGELOG.TXT"; 25 + mainProgram = "yudit"; 26 + license = lib.licenses.gpl2Plus; 27 + maintainers = with lib.maintainers; [ doronbehar ]; 28 + # Might work on Darwin but currently fails, and upstream doesn't officially 29 + # supports it. 30 + platforms = lib.platforms.linux; 31 + }; 32 + })