Merge pull request #251361 from qbit/yash-2.55

yash: 2.54 -> 2.55

authored by Mario Rodas and committed by GitHub c236073d e50c0b1c

+9 -6
+9 -6
pkgs/shells/yash/default.nix
··· 1 - { stdenv, lib, fetchurl, gettext, ncurses }: 2 3 stdenv.mkDerivation rec { 4 pname = "yash"; 5 - version = "2.54"; 6 7 - src = fetchurl { 8 - url = "https://osdn.net/dl/yash/yash-${version}.tar.xz"; 9 - hash = "sha256-RKCsHM98Os7PvqAn2MDJMPE6goBlvjGAVc4RMBU5GDk="; 10 }; 11 12 strictDeps = true; 13 - buildInputs = [ gettext ncurses ]; 14 15 meta = with lib; { 16 homepage = "https://yash.osdn.jp/index.html.en";
··· 1 + { stdenv, lib, fetchFromGitHub, gettext, ncurses, asciidoc }: 2 3 stdenv.mkDerivation rec { 4 pname = "yash"; 5 + version = "2.55"; 6 7 + src = fetchFromGitHub { 8 + owner = "magicant"; 9 + repo = pname; 10 + rev = version; 11 + hash = "sha256-raTIqklo69JEuhzdWUK3uywuLjqeQJCJ9nvnLRxlGr4="; 12 }; 13 14 strictDeps = true; 15 + nativeBuildInputs = [ asciidoc gettext ]; 16 + buildInputs = [ ncurses ]; 17 18 meta = with lib; { 19 homepage = "https://yash.osdn.jp/index.html.en";