summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-06-02 21:57:11 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-06-04 08:19:29 -0300
commit5842fde37aa31df8aa713b2016dc8a1ac8cb8972 (patch)
treeb5adf7903b7f3b1eab26286cf47490295d730592 /pkgs/shells
parente7ef797f044aebed4d54bce15e2cc55a9de5686a (diff)
downloadnixpkgs-5842fde37aa31df8aa713b2016dc8a1ac8cb8972.tar
nixpkgs-5842fde37aa31df8aa713b2016dc8a1ac8cb8972.tar.gz
nixpkgs-5842fde37aa31df8aa713b2016dc8a1ac8cb8972.tar.bz2
nixpkgs-5842fde37aa31df8aa713b2016dc8a1ac8cb8972.tar.lz
nixpkgs-5842fde37aa31df8aa713b2016dc8a1ac8cb8972.tar.xz
nixpkgs-5842fde37aa31df8aa713b2016dc8a1ac8cb8972.tar.zst
nixpkgs-5842fde37aa31df8aa713b2016dc8a1ac8cb8972.zip
yash: use new SRI hash format
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/yash/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/yash/default.nix b/pkgs/shells/yash/default.nix
index 01340df5e9a..773801eca17 100644
--- a/pkgs/shells/yash/default.nix
+++ b/pkgs/shells/yash/default.nix
@@ -6,15 +6,15 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "https://osdn.net/dl/yash/yash-${version}.tar.xz";
-    sha256 = "sha256:1jdmj4cyzwxxyyqf20y1zi578h7md860ryffp02qi143zpppn4sm";
+    hash = "sha256-VRN77/2DhIgFuM75DAxq9UB0SvzBA+Gw973z7xmRtck=";
   };
 
   strictDeps = true;
   buildInputs = [ gettext ncurses ];
 
   meta = with lib; {
-    description = "Yet another POSIX-compliant shell";
     homepage = "https://yash.osdn.jp/index.html.en";
+    description = "Yet another POSIX-compliant shell";
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ qbit ];
     platforms = platforms.all;