Unverified Commit d07ebffd authored by Aaron Bieber's avatar Aaron Bieber
Browse files

yash: 2.54 -> 2.55

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