yash: 2.54 -> 2.55
This commit is contained in:
parent
e9e72a4b0d
commit
d07ebffdef
1 changed files with 9 additions and 6 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue