Merge pull request #251361 from qbit/yash-2.55

yash: 2.54 -> 2.55
This commit is contained in:
Mario Rodas 2023-08-31 18:55:50 -05:00 committed by GitHub
commit c236073d10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,19 @@
{ stdenv, lib, fetchurl, gettext, ncurses }:
{ stdenv, lib, fetchFromGitHub, gettext, ncurses, asciidoc }:
stdenv.mkDerivation rec {
pname = "yash";
version = "2.54";
version = "2.55";
src = fetchurl {
url = "https://osdn.net/dl/yash/yash-${version}.tar.xz";
hash = "sha256-RKCsHM98Os7PvqAn2MDJMPE6goBlvjGAVc4RMBU5GDk=";
src = fetchFromGitHub {
owner = "magicant";
repo = pname;
rev = version;
hash = "sha256-raTIqklo69JEuhzdWUK3uywuLjqeQJCJ9nvnLRxlGr4=";
};
strictDeps = true;
buildInputs = [ gettext ncurses ];
nativeBuildInputs = [ asciidoc gettext ];
buildInputs = [ ncurses ];
meta = with lib; {
homepage = "https://yash.osdn.jp/index.html.en";