yash: 2.54 -> 2.55

This commit is contained in:
Aaron Bieber 2023-08-25 06:17:40 -06:00
parent e9e72a4b0d
commit d07ebffdef
No known key found for this signature in database

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";