about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorAaron Bieber <aaron@bolddaemon.com>2023-08-25 06:17:40 -0600
committerAaron Bieber <aaron@bolddaemon.com>2023-08-25 11:34:06 -0600
commitd07ebffdef610aa571bf226b5fbe52a05d934103 (patch)
tree5006fa2fa0129f419e4ea626dc24caff8d41a9ba /pkgs/shells
parente9e72a4b0dd54e4eb8953a2e64448aa37cea87b1 (diff)
yash: 2.54 -> 2.55
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/yash/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/shells/yash/default.nix b/pkgs/shells/yash/default.nix
index 6af39debf5650..b30f03b7e663e 100644
--- a/pkgs/shells/yash/default.nix
+++ b/pkgs/shells/yash/default.nix
@@ -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";