Unverified Commit c236073d authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #251361 from qbit/yash-2.55

yash: 2.54 -> 2.55
parents e50c0b1c d07ebffd
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
{ 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";